diff --git a/crop/SimData.ipynb b/crop/SimData.ipynb index 3794a5b90067b71d1d0915f56787185c02c66379..b1727a7f94d9535275997777b4b527a7a116d792 100644 --- a/crop/SimData.ipynb +++ b/crop/SimData.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 57, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -19,7 +19,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -27,29 +27,85 @@ "#returns array of new images and coordinates\n", "#TODO: make sure that the beetles and non-beetles don't overlap with each other\n", "\n", - "def generate_data(bg: list[Image], beetle_set: list[Image], num_beetles_arr: list[int]):\n", + "def generate_data(bg: list[Image], beetle_set: list[Image], num_beetles_arr: list[int], \n", + " non_beetle_set: list[Image], num_non_beetles_arr: list[int], overlap: bool):\n", " set_size = len(beetle_set)\n", + " set_non_size = len(non_beetle_set)\n", " set_bg_size = len(bg)\n", " sim_arr, coords_arr = [],[]\n", "\n", - " for num_beetles in num_beetles_arr:\n", + " for i, num_beetles in enumerate(num_beetles_arr):\n", + " num_non_beetles = num_non_beetles_arr[i]\n", " bg_id = np.random.randint(0, set_bg_size)\n", " bg_temp = bg[bg_id].copy()\n", " width, height = bg_temp.size\n", " beetle_coords = []\n", - " for _ in range(num_beetles):\n", + " non_beetle_coords = []\n", + " for j in range(num_non_beetles):\n", + " # get random non_beetle image\n", + " non_beetle_id = np.random.randint(0, set_non_size)\n", + " non_beetle_img = non_beetle_set[non_beetle_id]\n", + " \n", + " # get random non_beetle rotation\n", + " angle = np.random.randint(0, 360)\n", + " non_beetle_img = non_beetle_img.rotate(angle, resample=Image.BICUBIC, expand=1)\n", + " \n", + " non_beetle_width, non_beetle_height = non_beetle_img.size\n", + " \n", + " # get random x,y coords to paste non-beetle\n", + " x = np.random.randint(0, width - non_beetle_width)\n", + " y = np.random.randint(0, height - non_beetle_height)\n", + " \n", + " if not overlap:\n", + " is_overlapping = True\n", + " while (is_overlapping):\n", + " is_overlapping = False\n", + " for k in range(j):\n", + " _, x_, y_, width_, height_, _ = non_beetle_coords[-(k+1)]\n", + " if (x_ - width_/2) < x and (x_ + width_/2) > x and (y_ - height_/2) < y and (y_ + height_/2) > y:\n", + " is_overlapping = True\n", + " x = np.random.randint(0, width - non_beetle_width)\n", + " y = np.random.randint(0, height - non_beetle_height)\n", + " break\n", + "\n", + " bg_temp.paste(non_beetle_img, box=(x,y), mask=non_beetle_img)\n", + " \n", + " #centers x and y for YOLOv5 PyTorch label\n", + " x += non_beetle_width/2\n", + " y += non_beetle_width/2\n", + " non_beetle_coords.append((non_beetle_id, x, y, non_beetle_width, non_beetle_height, angle))\n", + "\n", + " \n", + " for j in range(num_beetles):\n", " # get random beetle image\n", " beetle_id = np.random.randint(0, set_size)\n", " beetle_img = beetle_set[beetle_id]\n", + " \n", + " # get random beetle rotation\n", + " angle = np.random.randint(0, 360)\n", + " beetle_img = beetle_img.rotate(angle, resample=Image.BICUBIC, expand=1)\n", + " \n", " beetle_width, beetle_height = beetle_img.size\n", - "\n", + " \n", " # get random x,y coords to paste beetle\n", " x = np.random.randint(0, width - beetle_width)\n", " y = np.random.randint(0, height - beetle_height)\n", - "\n", - " # get random beetle rotation (rotates about center)\n", - " angle = np.random.randint(0, 360)\n", - " beetle_img = beetle_img.rotate(angle, resample=Image.BICUBIC)\n", + " \n", + " if not overlap:\n", + " is_overlapping = True\n", + " while (is_overlapping):\n", + " is_overlapping = False\n", + " for k in range(j+num_non_beetles):\n", + " if (k < num_non_beetles):\n", + " _, x_, y_, width_, height_, _ = non_beetle_coords[-(k+1)]\n", + " else:\n", + " _, x_, y_, width_, height_, _ = beetle_coords[-(k+1-num_non_beetles)]\n", + " if (x_ - width_/2) < x and (x_ + width_/2) > x and (y_ - height_/2) < y and (y_ + height_/2) > y:\n", + " is_overlapping = True\n", + " x = np.random.randint(0, width - non_beetle_width)\n", + " y = np.random.randint(0, height - non_beetle_height)\n", + " break\n", + " \n", "\n", " bg_temp.paste(beetle_img, box=(x,y), mask=beetle_img)\n", " \n", @@ -65,7 +121,7 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -83,35 +139,48 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ - "bg = Image.open(\"imgs/bg.png\")\n", + "backgrounds = []\n", + "for file in glob.glob(r\"/raid/projects/akhot2/group-01-phys371-sp2023/crop/cropped_imgs/*\"):\n", + " if \"bg.png\" in file: #clean trap\n", + " bg = Image.open(file)\n", + " # map corners of trap to corners of image\n", + " coeffs = find_coeffs([(128,6), (1904,62), (2113,3137), (3,3228)], \n", + " [(0,0), (bg.size[0], 0), (bg.size[0], bg.size[1]), (0, bg.size[1])])\n", + " bg_flat = bg.transform(bg.size, Image.PERSPECTIVE, coeffs, Image.BICUBIC)\n", + " backgrounds.append(bg)\n", + " continue\n", + " bg = Image.open(file)\n", + " backgrounds.append(bg);\n", + "\n", "beetles = []\n", "for file in glob.glob(r\"/raid/projects/akhot2/group-01-phys371-sp2023/crop/beetles/*\"):\n", " b0 = Image.open(file)\n", " beetles.append(b0);\n", - "\n", - "# map corners of trap to corners of image\n", - "coeffs = find_coeffs([(128,6), (1904,62), (2113,3137), (3,3228)], \n", - " [(0,0), (bg.size[0], 0), (bg.size[0], bg.size[1]), (0, bg.size[1])])\n", - "bg_flat = bg.transform(bg.size, Image.PERSPECTIVE, coeffs, Image.BICUBIC)" + "non_beetles = []\n", + "for file in glob.glob(r\"/raid/projects/akhot2/group-01-phys371-sp2023/crop/non_beetles/*\"):\n", + " n_b0 = Image.open(file)\n", + " non_beetles.append(n_b0);" ] }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 8, "metadata": {}, "outputs": [], "source": [ - "beetle_counts = np.random.randint(0, 6, size=1250)\n", - "sim_img_arr, coords_arr = generate_data([bg_flat], beetles, beetle_counts)" + "beetle_counts = np.random.randint(0, 8, size=1250)\n", + "non_beetle_counts = np.random.randint(0, 6, size=1250)\n", + "overlap = True\n", + "sim_img_arr, coords_arr = generate_data(backgrounds, beetles, beetle_counts, non_beetles, non_beetle_counts, overlap)" ] }, { "cell_type": "code", - "execution_count": 62, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ @@ -136,7 +205,7 @@ }, { "cell_type": "code", - "execution_count": 63, + "execution_count": 11, "metadata": {}, "outputs": [ { @@ -1400,6 +1469,46 @@ "export(sim_img_arr, coords_arr)" ] }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "3.4648" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "beetle_counts.mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2.528" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "non_beetle_counts.mean()" + ] + }, { "cell_type": "code", "execution_count": null, @@ -1427,7 +1536,7 @@ }, { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAMIAAAD8CAYAAAAlkXvsAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKeklEQVR4nO3dT4xdZR3G8e9jKUgEI0UhBIlU0g0aU2pTMRCiiX9qN9WFCS60C5ISA4kuXFRJtC4h0YUhkpRAqIlCSJTIBrUhGDZGWrGWllLaKtFC08YYA25U6s/FeSe9aafl/pk5c+/M95O8OXfeOffOmZM+vWdOO++TqkJa6d611AcgTQODIGEQJMAgSIBBkACDIAFLEIQkm5McSXIsyY6+v740n/T57whJVgGvAp8FTgB7ga9U1cu9HYQ0j77fETYBx6rqz1X1H+AJYGvPxyCd55Kev971wN8GPj4BfOLcnZJsB7a3Dz/ew3FpGaqqDLtv30GY78DOuzarql3ALoAk/h8QLbq+L41OADcMfPxB4I2ej0E6T99B2AusS7I2yaXAncDTPR+DdJ5eL42q6u0k9wK/BlYBj1bVoT6PQZpPr7dPx+HPCBrXKD8s+y/LEgZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgARMGIclrSV5Ksj/Jvja3JsmeJEfb9qqB/b/dmnKOJPn8pAcvLZSFeEf4dFWtr6qN7eMdwLNVtQ54tn1MkpvpFv39CLAZ+HFr0JGW3GJcGm0FdrfHu4EvDsw/UVX/rqq/AMfoGnSkJTdpEAr4TZI/tJYbgGur6iRA217T5udry7l+vhdNsj3JvrnLLWmxTbos/G1V9UaSa4A9SV65yL5DteWAjTnq30TvCFX1RtueBp6iu9Q5leQ6gLY93Xa3LUdTa+wgJHlPkivnHgOfAw7SNeBsa7ttA37ZHj8N3JnksiRrgXXAC+N+fWkhTXJpdC3wVJK51/lZVf0qyV7gySR3AX8FvgxQVYeSPAm8DLwN3FNVZyY6emmB2JijZcvGHGlEBkHCIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkYIghJHk1yOsnBgbmRy0CSfLyVihxL8qO0JfKkaTDMO8JjdMUeg8YpA3kI2E635um6eV5TWjLvGISqeh74xznTI5WBtFWx31tVv6tujcmfDDxHWnLj/owwahnI9e3xufPSVJi0KORcFyoDGbokBLrGHLrLKKkX474jjFoGcqI9Pnd+XlW1q6o2DhQUSotq3CCMVAbSLp/eSnJru1v0tYHnSEuvqi46gMeBk8B/6f5mvwu4mu5u0dG2XTOw/33AceAI8IWB+Y10jTrHgQdp3QxDfP1yOMYZw/z5mhsWhWjZsihEGpFBkDAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBIzfmLMzyetJ9rexZeBzNuZo9gyx9ugdwAbg4MDcTuBb8+x7M/An4DJgLd06p6va514APkm3RPwzDKyL6tqnjsUYo6x9Om5jzoVsxcYczaBJfka4N8mBduk0Vya4II05SbYn2Zdk3wTHJw1t3CA8BNwErKdbMv4HbX5BGnMsClHfxgpCVZ2qqjNV9T/gYWBT+9SCNOZIfRsrCHO1Uc2X6ApAwMYczah3LBNM8jjwKeD9SU4A3wM+lWQ93eXNa8DdAFV1KMmTwMvA28A9VXWmvdTX6TqbL6e7a/TMAn4f0kRszNGyZWOONCKDIGEQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECRiuMeeGJM8lOZzkUJJvtPk1SfYkOdq2Vw08x9YczZYhGmuuAza0x1cCr9I14zwA7GjzO4D7F6M1hyloXnHM5ljoxpyTVfVie/wWcJiu5GMrsLvttpuzDThbsTVHM2aknxGS3AjcAvweuLYt907bXtN2m7g1x8Yc9e0dl4Wfk+QK4OfAN6vqzYtc3k/cmlNVu4Bd7evOu4+0kIZ6R0iymi4EP62qX7TpU3OFIW17us3bmqOZM8xdowCPAIer6ocDn3oa2NYeb+NsA46tOZo9Q9y1uZ3uEuYAsL+NLcDVwLPA0bZdM/Cc++juFh1h4M4QsJGuZuo48CCtqMS7Ro7FGKPcNbIxR8uWjTnSiAyChEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSMFlRyM4kryfZ38aWgedYFKLZMkFRyE7gW/Psb1GIYypGX0UhF7IVi0I0YyYpCgG4N8mBJI8OdKhZFKKZM3QQzi0KAR4CbgLWAyeBH8ztOs/T6yLz509W7aqqjVW1cdjjkyYxdlFIVZ2qqjNV9T/gYWBT292iEM2csYtC5tpymi/R9R6ARSGaQcN0qN0GfBV4Kcn+Nvcd4CtJ1tNd3rwG3A1QVYeSPAm8DLwN3FNVZ9rzvg48BlxOd9fomYX4JqRJWRSiZcuiEGlEBkHCIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBIw3Nqn707yQpI/tcac77f5NUn2JDnatlcNPMfGHM2WIRprAlzRHq+m60a4FXgA2NHmdwD325jjmKax0I05VVX/ah+ubqPomnF2t/ndnG2/2YqNOZoxw/YjrGorYZ8G9lTV74Fr21LvtO01bXcbczRzhgpCKwRZT1fusSnJRy+yu405mjkj3TWqqn8CvwU2A6fmykLa9nTbzcYczZxh7hp9IMn72uPLgc8Ar9A142xru23jbPuNjTmaPUPctfkY8EfgAF091Hfb/NXAs8DRtl0z8Jz76O4WHWHgzhCwsb3GceBBWlGJd40cizFGuWtkY46WLRtzpBEZBAmDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAuGSpD2AI/6L7P0uC9wN/X+qDmBLvdC4+NMqLzUIQjvh7CZ0k+zwXnYU+F14aSRgECZiNIOxa6gOYIp6Lsxb0XEz97yNIfZiFdwRp0RkEiSkOQpLNbcnIY0l2LPXxLIYkjyY5neTgwNyKXEozyQ1JnktyuC0t+o0238/5GOUXnPsawCq6X/D/MHAp3RKSNy/1cS3C93kHsAE4ODDXy1Ka0zaA64AN7fGVwKvte+7lfEzrO8Im4FhV/bmq/gM8QbeU5LJSVc8D/zhneisrcCnNqjpZVS+2x28Bh+lWQuzlfExrEC60bORKsGhLac6KJDcCt9AtON3L+ZjWIAy9POQKMvFSmrMgyRXAz4FvVtWbF9t1nrmxz8e0BuFCy0auBCt2Kc0kq+lC8NOq+kWb7uV8TGsQ9gLrkqxNcilwJ91SkivBilxKsx37I8DhqvrhwKf6OR9LfbfgIncRttDdOTgO3LfUx7NI3+PjwEngv3R/k91FT0tpTtsAbqe7hDkA7G9jS1/nw/9iITG9l0ZSrwyChEGQAIMgAQZBAgyCBBgECYD/A79FAQx8InyaAAAAAElFTkSuQmCC", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAMIAAAD8CAYAAAAlkXvsAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKeklEQVR4nO3dT4xdZR3G8e9jKUgEI0UhBIlU0g0aU2pTMRCiiX9qN9WFCS60C5ISA4kuXFRJtC4h0YUhkpRAqIlCSJTIBrUhGDZGWrGWllLaKtFC08YYA25U6s/FeSe9aafl/pk5c+/M95O8OXfeOffOmZM+vWdOO++TqkJa6d611AcgTQODIGEQJMAgSIBBkACDIAFLEIQkm5McSXIsyY6+v740n/T57whJVgGvAp8FTgB7ga9U1cu9HYQ0j77fETYBx6rqz1X1H+AJYGvPxyCd55Kev971wN8GPj4BfOLcnZJsB7a3Dz/ew3FpGaqqDLtv30GY78DOuzarql3ALoAk/h8QLbq+L41OADcMfPxB4I2ej0E6T99B2AusS7I2yaXAncDTPR+DdJ5eL42q6u0k9wK/BlYBj1bVoT6PQZpPr7dPx+HPCBrXKD8s+y/LEgZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgARMGIclrSV5Ksj/Jvja3JsmeJEfb9qqB/b/dmnKOJPn8pAcvLZSFeEf4dFWtr6qN7eMdwLNVtQ54tn1MkpvpFv39CLAZ+HFr0JGW3GJcGm0FdrfHu4EvDsw/UVX/rqq/AMfoGnSkJTdpEAr4TZI/tJYbgGur6iRA217T5udry7l+vhdNsj3JvrnLLWmxTbos/G1V9UaSa4A9SV65yL5DteWAjTnq30TvCFX1RtueBp6iu9Q5leQ6gLY93Xa3LUdTa+wgJHlPkivnHgOfAw7SNeBsa7ttA37ZHj8N3JnksiRrgXXAC+N+fWkhTXJpdC3wVJK51/lZVf0qyV7gySR3AX8FvgxQVYeSPAm8DLwN3FNVZyY6emmB2JijZcvGHGlEBkHCIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkYIghJHk1yOsnBgbmRy0CSfLyVihxL8qO0JfKkaTDMO8JjdMUeg8YpA3kI2E635um6eV5TWjLvGISqeh74xznTI5WBtFWx31tVv6tujcmfDDxHWnLj/owwahnI9e3xufPSVJi0KORcFyoDGbokBLrGHLrLKKkX474jjFoGcqI9Pnd+XlW1q6o2DhQUSotq3CCMVAbSLp/eSnJru1v0tYHnSEuvqi46gMeBk8B/6f5mvwu4mu5u0dG2XTOw/33AceAI8IWB+Y10jTrHgQdp3QxDfP1yOMYZw/z5mhsWhWjZsihEGpFBkDAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBIzfmLMzyetJ9rexZeBzNuZo9gyx9ugdwAbg4MDcTuBb8+x7M/An4DJgLd06p6va514APkm3RPwzDKyL6tqnjsUYo6x9Om5jzoVsxcYczaBJfka4N8mBduk0Vya4II05SbYn2Zdk3wTHJw1t3CA8BNwErKdbMv4HbX5BGnMsClHfxgpCVZ2qqjNV9T/gYWBT+9SCNOZIfRsrCHO1Uc2X6ApAwMYczah3LBNM8jjwKeD9SU4A3wM+lWQ93eXNa8DdAFV1KMmTwMvA28A9VXWmvdTX6TqbL6e7a/TMAn4f0kRszNGyZWOONCKDIGEQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECRiuMeeGJM8lOZzkUJJvtPk1SfYkOdq2Vw08x9YczZYhGmuuAza0x1cCr9I14zwA7GjzO4D7F6M1hyloXnHM5ljoxpyTVfVie/wWcJiu5GMrsLvttpuzDThbsTVHM2aknxGS3AjcAvweuLYt907bXtN2m7g1x8Yc9e0dl4Wfk+QK4OfAN6vqzYtc3k/cmlNVu4Bd7evOu4+0kIZ6R0iymi4EP62qX7TpU3OFIW17us3bmqOZM8xdowCPAIer6ocDn3oa2NYeb+NsA46tOZo9Q9y1uZ3uEuYAsL+NLcDVwLPA0bZdM/Cc++juFh1h4M4QsJGuZuo48CCtqMS7Ro7FGKPcNbIxR8uWjTnSiAyChEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSMFlRyM4kryfZ38aWgedYFKLZMkFRyE7gW/Psb1GIYypGX0UhF7IVi0I0YyYpCgG4N8mBJI8OdKhZFKKZM3QQzi0KAR4CbgLWAyeBH8ztOs/T6yLz509W7aqqjVW1cdjjkyYxdlFIVZ2qqjNV9T/gYWBT292iEM2csYtC5tpymi/R9R6ARSGaQcN0qN0GfBV4Kcn+Nvcd4CtJ1tNd3rwG3A1QVYeSPAm8DLwN3FNVZ9rzvg48BlxOd9fomYX4JqRJWRSiZcuiEGlEBkHCIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBIw3Nqn707yQpI/tcac77f5NUn2JDnatlcNPMfGHM2WIRprAlzRHq+m60a4FXgA2NHmdwD325jjmKax0I05VVX/ah+ubqPomnF2t/ndnG2/2YqNOZoxw/YjrGorYZ8G9lTV74Fr21LvtO01bXcbczRzhgpCKwRZT1fusSnJRy+yu405mjkj3TWqqn8CvwU2A6fmykLa9nTbzcYczZxh7hp9IMn72uPLgc8Ar9A142xru23jbPuNjTmaPUPctfkY8EfgAF091Hfb/NXAs8DRtl0z8Jz76O4WHWHgzhCwsb3GceBBWlGJd40cizFGuWtkY46WLRtzpBEZBAmDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAuGSpD2AI/6L7P0uC9wN/X+qDmBLvdC4+NMqLzUIQjvh7CZ0k+zwXnYU+F14aSRgECZiNIOxa6gOYIp6Lsxb0XEz97yNIfZiFdwRp0RkEiSkOQpLNbcnIY0l2LPXxLIYkjyY5neTgwNyKXEozyQ1JnktyuC0t+o0238/5GOUXnPsawCq6X/D/MHAp3RKSNy/1cS3C93kHsAE4ODDXy1Ka0zaA64AN7fGVwKvte+7lfEzrO8Im4FhV/bmq/gM8QbeU5LJSVc8D/zhneisrcCnNqjpZVS+2x28Bh+lWQuzlfExrEC60bORKsGhLac6KJDcCt9AtON3L+ZjWIAy9POQKMvFSmrMgyRXAz4FvVtWbF9t1nrmxz8e0BuFCy0auBCt2Kc0kq+lC8NOq+kWb7uV8TGsQ9gLrkqxNcilwJ91SkivBilxKsx37I8DhqvrhwKf6OR9LfbfgIncRttDdOTgO3LfUx7NI3+PjwEngv3R/k91FT0tpTtsAbqe7hDkA7G9jS1/nw/9iITG9l0ZSrwyChEGQAIMgAQZBAgyCBBgECYD/A79FAQx8InyaAAAAAElFTkSuQmCC\n", "text/plain": [ "<Figure size 432x288 with 1 Axes>" ] @@ -1439,7 +1548,7 @@ }, { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAMIAAAD8CAYAAAAlkXvsAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKeklEQVR4nO3dT4xdZR3G8e9jKUgEI0UhBIlU0g0aU2pTMRCiiX9qN9WFCS60C5ISA4kuXFRJtC4h0YUhkpRAqIlCSJTIBrUhGDZGWrGWllLaKtFC08YYA25U6s/FeSe9aafl/pk5c+/M95O8OXfeOffOmZM+vWdOO++TqkJa6d611AcgTQODIGEQJMAgSIBBkACDIAFLEIQkm5McSXIsyY6+v740n/T57whJVgGvAp8FTgB7ga9U1cu9HYQ0j77fETYBx6rqz1X1H+AJYGvPxyCd55Kev971wN8GPj4BfOLcnZJsB7a3Dz/ew3FpGaqqDLtv30GY78DOuzarql3ALoAk/h8QLbq+L41OADcMfPxB4I2ej0E6T99B2AusS7I2yaXAncDTPR+DdJ5eL42q6u0k9wK/BlYBj1bVoT6PQZpPr7dPx+HPCBrXKD8s+y/LEgZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgARMGIclrSV5Ksj/Jvja3JsmeJEfb9qqB/b/dmnKOJPn8pAcvLZSFeEf4dFWtr6qN7eMdwLNVtQ54tn1MkpvpFv39CLAZ+HFr0JGW3GJcGm0FdrfHu4EvDsw/UVX/rqq/AMfoGnSkJTdpEAr4TZI/tJYbgGur6iRA217T5udry7l+vhdNsj3JvrnLLWmxTbos/G1V9UaSa4A9SV65yL5DteWAjTnq30TvCFX1RtueBp6iu9Q5leQ6gLY93Xa3LUdTa+wgJHlPkivnHgOfAw7SNeBsa7ttA37ZHj8N3JnksiRrgXXAC+N+fWkhTXJpdC3wVJK51/lZVf0qyV7gySR3AX8FvgxQVYeSPAm8DLwN3FNVZyY6emmB2JijZcvGHGlEBkHCIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkYIghJHk1yOsnBgbmRy0CSfLyVihxL8qO0JfKkaTDMO8JjdMUeg8YpA3kI2E635um6eV5TWjLvGISqeh74xznTI5WBtFWx31tVv6tujcmfDDxHWnLj/owwahnI9e3xufPSVJi0KORcFyoDGbokBLrGHLrLKKkX474jjFoGcqI9Pnd+XlW1q6o2DhQUSotq3CCMVAbSLp/eSnJru1v0tYHnSEuvqi46gMeBk8B/6f5mvwu4mu5u0dG2XTOw/33AceAI8IWB+Y10jTrHgQdp3QxDfP1yOMYZw/z5mhsWhWjZsihEGpFBkDAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBIzfmLMzyetJ9rexZeBzNuZo9gyx9ugdwAbg4MDcTuBb8+x7M/An4DJgLd06p6va514APkm3RPwzDKyL6tqnjsUYo6x9Om5jzoVsxcYczaBJfka4N8mBduk0Vya4II05SbYn2Zdk3wTHJw1t3CA8BNwErKdbMv4HbX5BGnMsClHfxgpCVZ2qqjNV9T/gYWBT+9SCNOZIfRsrCHO1Uc2X6ApAwMYczah3LBNM8jjwKeD9SU4A3wM+lWQ93eXNa8DdAFV1KMmTwMvA28A9VXWmvdTX6TqbL6e7a/TMAn4f0kRszNGyZWOONCKDIGEQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECRiuMeeGJM8lOZzkUJJvtPk1SfYkOdq2Vw08x9YczZYhGmuuAza0x1cCr9I14zwA7GjzO4D7F6M1hyloXnHM5ljoxpyTVfVie/wWcJiu5GMrsLvttpuzDThbsTVHM2aknxGS3AjcAvweuLYt907bXtN2m7g1x8Yc9e0dl4Wfk+QK4OfAN6vqzYtc3k/cmlNVu4Bd7evOu4+0kIZ6R0iymi4EP62qX7TpU3OFIW17us3bmqOZM8xdowCPAIer6ocDn3oa2NYeb+NsA46tOZo9Q9y1uZ3uEuYAsL+NLcDVwLPA0bZdM/Cc++juFh1h4M4QsJGuZuo48CCtqMS7Ro7FGKPcNbIxR8uWjTnSiAyChEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSMFlRyM4kryfZ38aWgedYFKLZMkFRyE7gW/Psb1GIYypGX0UhF7IVi0I0YyYpCgG4N8mBJI8OdKhZFKKZM3QQzi0KAR4CbgLWAyeBH8ztOs/T6yLz509W7aqqjVW1cdjjkyYxdlFIVZ2qqjNV9T/gYWBT292iEM2csYtC5tpymi/R9R6ARSGaQcN0qN0GfBV4Kcn+Nvcd4CtJ1tNd3rwG3A1QVYeSPAm8DLwN3FNVZ9rzvg48BlxOd9fomYX4JqRJWRSiZcuiEGlEBkHCIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBIw3Nqn707yQpI/tcac77f5NUn2JDnatlcNPMfGHM2WIRprAlzRHq+m60a4FXgA2NHmdwD325jjmKax0I05VVX/ah+ubqPomnF2t/ndnG2/2YqNOZoxw/YjrGorYZ8G9lTV74Fr21LvtO01bXcbczRzhgpCKwRZT1fusSnJRy+yu405mjkj3TWqqn8CvwU2A6fmykLa9nTbzcYczZxh7hp9IMn72uPLgc8Ar9A142xru23jbPuNjTmaPUPctfkY8EfgAF091Hfb/NXAs8DRtl0z8Jz76O4WHWHgzhCwsb3GceBBWlGJd40cizFGuWtkY46WLRtzpBEZBAmDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAuGSpD2AI/6L7P0uC9wN/X+qDmBLvdC4+NMqLzUIQjvh7CZ0k+zwXnYU+F14aSRgECZiNIOxa6gOYIp6Lsxb0XEz97yNIfZiFdwRp0RkEiSkOQpLNbcnIY0l2LPXxLIYkjyY5neTgwNyKXEozyQ1JnktyuC0t+o0238/5GOUXnPsawCq6X/D/MHAp3RKSNy/1cS3C93kHsAE4ODDXy1Ka0zaA64AN7fGVwKvte+7lfEzrO8Im4FhV/bmq/gM8QbeU5LJSVc8D/zhneisrcCnNqjpZVS+2x28Bh+lWQuzlfExrEC60bORKsGhLac6KJDcCt9AtON3L+ZjWIAy9POQKMvFSmrMgyRXAz4FvVtWbF9t1nrmxz8e0BuFCy0auBCt2Kc0kq+lC8NOq+kWb7uV8TGsQ9gLrkqxNcilwJ91SkivBilxKsx37I8DhqvrhwKf6OR9LfbfgIncRttDdOTgO3LfUx7NI3+PjwEngv3R/k91FT0tpTtsAbqe7hDkA7G9jS1/nw/9iITG9l0ZSrwyChEGQAIMgAQZBAgyCBBgECYD/A79FAQx8InyaAAAAAElFTkSuQmCC", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAMIAAAD8CAYAAAAlkXvsAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKeklEQVR4nO3dT4xdZR3G8e9jKUgEI0UhBIlU0g0aU2pTMRCiiX9qN9WFCS60C5ISA4kuXFRJtC4h0YUhkpRAqIlCSJTIBrUhGDZGWrGWllLaKtFC08YYA25U6s/FeSe9aafl/pk5c+/M95O8OXfeOffOmZM+vWdOO++TqkJa6d611AcgTQODIGEQJMAgSIBBkACDIAFLEIQkm5McSXIsyY6+v740n/T57whJVgGvAp8FTgB7ga9U1cu9HYQ0j77fETYBx6rqz1X1H+AJYGvPxyCd55Kev971wN8GPj4BfOLcnZJsB7a3Dz/ew3FpGaqqDLtv30GY78DOuzarql3ALoAk/h8QLbq+L41OADcMfPxB4I2ej0E6T99B2AusS7I2yaXAncDTPR+DdJ5eL42q6u0k9wK/BlYBj1bVoT6PQZpPr7dPx+HPCBrXKD8s+y/LEgZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgARMGIclrSV5Ksj/Jvja3JsmeJEfb9qqB/b/dmnKOJPn8pAcvLZSFeEf4dFWtr6qN7eMdwLNVtQ54tn1MkpvpFv39CLAZ+HFr0JGW3GJcGm0FdrfHu4EvDsw/UVX/rqq/AMfoGnSkJTdpEAr4TZI/tJYbgGur6iRA217T5udry7l+vhdNsj3JvrnLLWmxTbos/G1V9UaSa4A9SV65yL5DteWAjTnq30TvCFX1RtueBp6iu9Q5leQ6gLY93Xa3LUdTa+wgJHlPkivnHgOfAw7SNeBsa7ttA37ZHj8N3JnksiRrgXXAC+N+fWkhTXJpdC3wVJK51/lZVf0qyV7gySR3AX8FvgxQVYeSPAm8DLwN3FNVZyY6emmB2JijZcvGHGlEBkHCIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkYIghJHk1yOsnBgbmRy0CSfLyVihxL8qO0JfKkaTDMO8JjdMUeg8YpA3kI2E635um6eV5TWjLvGISqeh74xznTI5WBtFWx31tVv6tujcmfDDxHWnLj/owwahnI9e3xufPSVJi0KORcFyoDGbokBLrGHLrLKKkX474jjFoGcqI9Pnd+XlW1q6o2DhQUSotq3CCMVAbSLp/eSnJru1v0tYHnSEuvqi46gMeBk8B/6f5mvwu4mu5u0dG2XTOw/33AceAI8IWB+Y10jTrHgQdp3QxDfP1yOMYZw/z5mhsWhWjZsihEGpFBkDAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBIzfmLMzyetJ9rexZeBzNuZo9gyx9ugdwAbg4MDcTuBb8+x7M/An4DJgLd06p6va514APkm3RPwzDKyL6tqnjsUYo6x9Om5jzoVsxcYczaBJfka4N8mBduk0Vya4II05SbYn2Zdk3wTHJw1t3CA8BNwErKdbMv4HbX5BGnMsClHfxgpCVZ2qqjNV9T/gYWBT+9SCNOZIfRsrCHO1Uc2X6ApAwMYczah3LBNM8jjwKeD9SU4A3wM+lWQ93eXNa8DdAFV1KMmTwMvA28A9VXWmvdTX6TqbL6e7a/TMAn4f0kRszNGyZWOONCKDIGEQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECRiuMeeGJM8lOZzkUJJvtPk1SfYkOdq2Vw08x9YczZYhGmuuAza0x1cCr9I14zwA7GjzO4D7F6M1hyloXnHM5ljoxpyTVfVie/wWcJiu5GMrsLvttpuzDThbsTVHM2aknxGS3AjcAvweuLYt907bXtN2m7g1x8Yc9e0dl4Wfk+QK4OfAN6vqzYtc3k/cmlNVu4Bd7evOu4+0kIZ6R0iymi4EP62qX7TpU3OFIW17us3bmqOZM8xdowCPAIer6ocDn3oa2NYeb+NsA46tOZo9Q9y1uZ3uEuYAsL+NLcDVwLPA0bZdM/Cc++juFh1h4M4QsJGuZuo48CCtqMS7Ro7FGKPcNbIxR8uWjTnSiAyChEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAgyABBkECDIIEGAQJMAgSMFlRyM4kryfZ38aWgedYFKLZMkFRyE7gW/Psb1GIYypGX0UhF7IVi0I0YyYpCgG4N8mBJI8OdKhZFKKZM3QQzi0KAR4CbgLWAyeBH8ztOs/T6yLz509W7aqqjVW1cdjjkyYxdlFIVZ2qqjNV9T/gYWBT292iEM2csYtC5tpymi/R9R6ARSGaQcN0qN0GfBV4Kcn+Nvcd4CtJ1tNd3rwG3A1QVYeSPAm8DLwN3FNVZ9rzvg48BlxOd9fomYX4JqRJWRSiZcuiEGlEBkHCIEiAQZAAgyABBkECDIIEGAQJMAgSYBAkwCBIgEGQAIMgAQZBAgyCBBgECTAIEmAQJMAgSIBBkACDIAEGQQIMggQYBAkwCBIw3Nqn707yQpI/tcac77f5NUn2JDnatlcNPMfGHM2WIRprAlzRHq+m60a4FXgA2NHmdwD325jjmKax0I05VVX/ah+ubqPomnF2t/ndnG2/2YqNOZoxw/YjrGorYZ8G9lTV74Fr21LvtO01bXcbczRzhgpCKwRZT1fusSnJRy+yu405mjkj3TWqqn8CvwU2A6fmykLa9nTbzcYczZxh7hp9IMn72uPLgc8Ar9A142xru23jbPuNjTmaPUPctfkY8EfgAF091Hfb/NXAs8DRtl0z8Jz76O4WHWHgzhCwsb3GceBBWlGJd40cizFGuWtkY46WLRtzpBEZBAmDIAEGQQIMggQYBAkwCBJgECTAIEiAQZAAuGSpD2AI/6L7P0uC9wN/X+qDmBLvdC4+NMqLzUIQjvh7CZ0k+zwXnYU+F14aSRgECZiNIOxa6gOYIp6Lsxb0XEz97yNIfZiFdwRp0RkEiSkOQpLNbcnIY0l2LPXxLIYkjyY5neTgwNyKXEozyQ1JnktyuC0t+o0238/5GOUXnPsawCq6X/D/MHAp3RKSNy/1cS3C93kHsAE4ODDXy1Ka0zaA64AN7fGVwKvte+7lfEzrO8Im4FhV/bmq/gM8QbeU5LJSVc8D/zhneisrcCnNqjpZVS+2x28Bh+lWQuzlfExrEC60bORKsGhLac6KJDcCt9AtON3L+ZjWIAy9POQKMvFSmrMgyRXAz4FvVtWbF9t1nrmxz8e0BuFCy0auBCt2Kc0kq+lC8NOq+kWb7uV8TGsQ9gLrkqxNcilwJ91SkivBilxKsx37I8DhqvrhwKf6OR9LfbfgIncRttDdOTgO3LfUx7NI3+PjwEngv3R/k91FT0tpTtsAbqe7hDkA7G9jS1/nw/9iITG9l0ZSrwyChEGQAIMgAQZBAgyCBBgECYD/A79FAQx8InyaAAAAAElFTkSuQmCC\n", "text/plain": [ "<Figure size 432x288 with 1 Axes>" ] @@ -1481,15 +1590,50 @@ "metadata": {}, "source": [ "First:\n", - " - created 1000 images on a clean background variable 1 to 5 of the same beetle, model detected well on test set of 100 images (val/exp or exp2 or exp3) (proof of concept)\n", - " - created 1000 images on a clean background variable 0 to 5 beetles of 6 different types of beetles, performing\n", + " - created 1250 images on a clean background variable 1 to 5 of the same beetle, model detected well on test set of 100 images (val/exp or exp2 or exp3) (proof of concept)\n", + " \n", + " fixed labels, making sure it's in the center\n", + " \n", + " - created 1250 images on a clean background variable 0 to 5 beetles of 6 different types of beetles, performing nearly 100%\n", + " https://wandb.ai/akhot2/YOLOv5/runs/294etqct?workspace=user-fresleven\n", + " https://wandb.ai/akhot2/YOLOv5/runs/i0ykd1a6?workspace=user-fresleven\n", " \n", "TODO:\n", - " - created 1000 images on a clean background variable 0 to 5 beetles of 6 different images and 0 to 5 non-beetles of _ different images, performing\n", - " - created 1000 images on a clean background variable 0 to 10 beetles of 15 different images and 0 to 10 non-beetles of _ different images\n", - " - created 1000 images on a clean background variable 0 to 10 beetles of 15 different images and 0 to 10 non-beetles of _ different images on a dirty background\n", + " - (fixed autocropping during rotation and added option for not overlapping and multiple backgrounds and non beetles)\n", + " - created 1250 images on a clean background variable 0 to 7 beetles of 6 different images and 0 to 5 non-beetles 7 different images, performing \n", + " - created 1250 images on a clean and dirty background variables 0 to 15 beetles of 15 different images and 0 to 10 non-beetle of 10 different images, overlap True\n", + " \n", + " - created 1250 images on a clean and dirty background variables 0 to 10 beetles of 15 different images and 0 to 10 non-beetle of 10 different images, overlap False\n", + " \n", " - perform auto cropping on arduino and include " ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(backgrounds)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -1508,7 +1652,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.9" + "version": "3.9.12" }, "vscode": { "interpreter": { diff --git a/crop/autocrop_folder.py b/crop/autocrop_folder.py index 2e51ed9c4252fd0b61f5e58a954a815ff7cb2cae..7a8091b21d1acbc5783c95272e17c793963890b7 100644 --- a/crop/autocrop_folder.py +++ b/crop/autocrop_folder.py @@ -110,7 +110,7 @@ for folder_name in glob.glob(sys.argv[1] + "*"): crop(folder_name, sys.argv[2] + folder_name.split('/')[-1]) elif len(sys.argv) == 5: crop(folder_name, sys.argv[2] + folder_name.split('/')[-1], sys.argv[3], sys.argv[4]) - elif type(sys.argv[3]) is int: + elif type(int(sys.argv[3])) is int: crop(folder_name, sys.argv[2] + folder_name.split('/')[-1], sensitivity=sys.argv[3]) else: crop(folder_name, sys.argv[2] + folder_name.split('/')[-1], debug=sys.argv[3]) \ No newline at end of file diff --git a/yolov5_model/data/beetles_real.yaml b/yolov5_model/data/beetles_real.yaml new file mode 100644 index 0000000000000000000000000000000000000000..dd7289cae87fd86b002f7ec063f90a97c6c8a666 --- /dev/null +++ b/yolov5_model/data/beetles_real.yaml @@ -0,0 +1,12 @@ +names: +- beetles +nc: 1 +roboflow: + license: CC BY 4.0 + project: wcr-beetle-traps-dataset + url: https://universe.roboflow.com/wcr-beetle-detection/wcr-beetle-traps-dataset/dataset/5 + version: 5 + workspace: wcr-beetle-detection + +train: ../../crop/data/train/images +val: ../../crop/real_data/images diff --git a/yolov5_model/models/__pycache__/tf.cpython-39.pyc b/yolov5_model/models/__pycache__/tf.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9068348adb12d9e9b86e60e569a500660585cd3f Binary files /dev/null and b/yolov5_model/models/__pycache__/tf.cpython-39.pyc differ diff --git a/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best-fp16.tflite b/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best-fp16.tflite new file mode 100644 index 0000000000000000000000000000000000000000..9bb9801ebdaa6c286115347477c7f89c5e1c2cd9 Binary files /dev/null and b/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best-fp16.tflite differ diff --git a/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best_saved_model/saved_model.pb b/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best_saved_model/saved_model.pb new file mode 100644 index 0000000000000000000000000000000000000000..7596672b4772b30be6bb0e004ff0fad61ddc29f4 Binary files /dev/null and b/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best_saved_model/saved_model.pb differ diff --git a/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best_saved_model/variables/variables.data-00000-of-00001 b/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best_saved_model/variables/variables.data-00000-of-00001 new file mode 100644 index 0000000000000000000000000000000000000000..27a449672b10917813a3e70414ca7e7542f83da6 Binary files /dev/null and b/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best_saved_model/variables/variables.data-00000-of-00001 differ diff --git a/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best_saved_model/variables/variables.index b/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best_saved_model/variables/variables.index new file mode 100644 index 0000000000000000000000000000000000000000..b10c8f79d1a39bc2938e0403b6c1e86dda405980 Binary files /dev/null and b/yolov5_model/runs/train/6beetle_7-non_3dirt_bkg_over/weights/best_saved_model/variables/variables.index differ diff --git a/yolov5_model/runs/val/real_beetles_test/confusion_matrix.png b/yolov5_model/runs/val/real_beetles_test/confusion_matrix.png new file mode 100644 index 0000000000000000000000000000000000000000..3bf69f1ab1c30cd4aec35a06d46817bcf19bcf1a Binary files /dev/null and b/yolov5_model/runs/val/real_beetles_test/confusion_matrix.png differ diff --git a/yolov5_model/runs/val/real_beetles_test/val_batch0_labels.jpg b/yolov5_model/runs/val/real_beetles_test/val_batch0_labels.jpg new file mode 100644 index 0000000000000000000000000000000000000000..16969bbc215517a9a4c0ed180435483e1f41bc37 Binary files /dev/null and b/yolov5_model/runs/val/real_beetles_test/val_batch0_labels.jpg differ diff --git a/yolov5_model/runs/val/real_beetles_test/val_batch0_pred.jpg b/yolov5_model/runs/val/real_beetles_test/val_batch0_pred.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29f3f444fb95e79a8386cc98ae1f68da98aff527 Binary files /dev/null and b/yolov5_model/runs/val/real_beetles_test/val_batch0_pred.jpg differ diff --git a/yolov5_model/utils/__pycache__/activations.cpython-39.pyc b/yolov5_model/utils/__pycache__/activations.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..00a837773a919b05c664131602e7e3c12cfc7426 Binary files /dev/null and b/yolov5_model/utils/__pycache__/activations.cpython-39.pyc differ diff --git a/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/config.yaml b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..73a11ccb4bca49da840805e5828e76eeefab96dc --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/config.yaml @@ -0,0 +1,176 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677453180 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 16 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp2 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 8 diff --git a/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/output.log b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..b4e8e32f0665ab911a5e09eaf85780e153f5183a --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/output.log @@ -0,0 +1,52 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 125, in train + model = Model(cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 907, in to + return self._apply(convert) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/models/yolo.py", line 155, in _apply + self = super()._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 601, in _apply + param_applied = fn(param) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 905, in convert + return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) +RuntimeError: CUDA error: out of memory +CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. +For debugging consider passing CUDA_LAUNCH_BLOCKING=1. \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/requirements.txt b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..e113c026fbdf85a4d72907da3581363c7a7d333b --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-metadata.json @@ -0,0 +1,35 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-26T23:13:26.684233", + "startedAt": "2023-02-26T23:13:00.043964", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 8, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "16", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..d6e023ab1c8294bfe311b3da5242f8acf46ce36a --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 26}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171300-wj31wtse/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_171300-wj31wtse/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..45a70621dcbc4e118be6790aef76cacc18275659 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171300-wj31wtse/logs/debug-internal.log @@ -0,0 +1,135 @@ +2023-02-26 17:13:05,060 INFO MainThread:118577 [internal.py:wandb_internal():90] W&B internal server running at pid: 118577, started at: 2023-02-26 17:13:05.057937 +2023-02-26 17:13:05,072 INFO WriterThread:118577 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/run-wj31wtse.wandb +2023-02-26 17:13:05,076 DEBUG SenderThread:118577 [sender.py:send():232] send: header +2023-02-26 17:13:05,076 DEBUG SenderThread:118577 [sender.py:send():232] send: run +2023-02-26 17:13:05,085 INFO SenderThread:118577 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/wj31wtse +2023-02-26 17:13:05,390 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 17:13:05,404 INFO SenderThread:118577 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files +2023-02-26 17:13:05,404 INFO SenderThread:118577 [sender.py:_start_run_threads():811] run started: wj31wtse with start time 1677453180 +2023-02-26 17:13:05,404 DEBUG SenderThread:118577 [sender.py:send():232] send: summary +2023-02-26 17:13:05,406 INFO SenderThread:118577 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:13:05,406 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: check_version +2023-02-26 17:13:05,465 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 17:13:19,231 INFO Thread-7 :118577 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-summary.json +2023-02-26 17:13:19,233 INFO Thread-7 :118577 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/output.log +2023-02-26 17:13:26,683 DEBUG HandlerThread:118577 [meta.py:__init__():35] meta init +2023-02-26 17:13:26,684 DEBUG HandlerThread:118577 [meta.py:__init__():49] meta init done +2023-02-26 17:13:26,684 DEBUG HandlerThread:118577 [meta.py:probe():209] probe +2023-02-26 17:13:26,693 DEBUG HandlerThread:118577 [meta.py:_setup_git():199] setup git +2023-02-26 17:13:26,744 DEBUG HandlerThread:118577 [meta.py:_setup_git():206] setup git done +2023-02-26 17:13:26,744 DEBUG HandlerThread:118577 [meta.py:_save_pip():53] save pip +2023-02-26 17:13:26,747 DEBUG HandlerThread:118577 [meta.py:_save_pip():67] save pip done +2023-02-26 17:13:26,747 DEBUG HandlerThread:118577 [meta.py:_save_conda():74] save conda +2023-02-26 17:13:27,364 INFO Thread-7 :118577 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/conda-environment.yaml +2023-02-26 17:13:27,366 INFO Thread-7 :118577 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/requirements.txt +2023-02-26 17:13:32,298 DEBUG HandlerThread:118577 [meta.py:_save_conda():84] save conda done +2023-02-26 17:13:32,299 DEBUG HandlerThread:118577 [meta.py:probe():247] probe done +2023-02-26 17:13:32,314 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:13:32,314 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:13:32,322 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:13:32,323 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:13:32,323 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:13:32,325 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:13:32,388 DEBUG SenderThread:118577 [sender.py:send():232] send: telemetry +2023-02-26 17:13:32,389 DEBUG SenderThread:118577 [sender.py:send():232] send: telemetry +2023-02-26 17:13:32,390 DEBUG SenderThread:118577 [sender.py:send():232] send: exit +2023-02-26 17:13:32,392 INFO SenderThread:118577 [sender.py:send_exit():368] handling exit code: 1 +2023-02-26 17:13:32,392 INFO SenderThread:118577 [sender.py:send_exit():370] handling runtime: 26 +2023-02-26 17:13:32,394 INFO SenderThread:118577 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:13:32,394 INFO SenderThread:118577 [sender.py:send_exit():376] send defer +2023-02-26 17:13:32,395 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:13:32,395 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:13:32,395 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:13:32,395 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:13:32,395 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:13:32,395 INFO HandlerThread:118577 [handler.py:handle_request_defer():164] handle defer: 0 +2023-02-26 17:13:32,396 DEBUG SenderThread:118577 [sender.py:send():232] send: files +2023-02-26 17:13:32,396 INFO Thread-7 :118577 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/conda-environment.yaml +2023-02-26 17:13:32,396 INFO SenderThread:118577 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-02-26 17:13:32,397 INFO Thread-7 :118577 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-summary.json +2023-02-26 17:13:32,397 INFO Thread-7 :118577 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-metadata.json +2023-02-26 17:13:32,397 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: defer +2023-02-26 17:13:32,398 INFO SenderThread:118577 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-02-26 17:13:32,398 INFO SenderThread:118577 [sender.py:transition_state():389] send defer: 1 +2023-02-26 17:13:32,398 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:13:32,398 INFO HandlerThread:118577 [handler.py:handle_request_defer():164] handle defer: 1 +2023-02-26 17:13:32,536 WARNING MainThread:118577 [internal.py:wandb_internal():153] Internal process interrupt: 1 +2023-02-26 17:13:32,827 INFO Thread-11 :118577 [upload_job.py:push():137] Uploaded file /tmp/tmpsqdb4b4lwandb/322u9sb8-wandb-metadata.json +2023-02-26 17:13:32,981 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: defer +2023-02-26 17:13:32,981 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:13:32,981 INFO SenderThread:118577 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-02-26 17:13:32,982 INFO SenderThread:118577 [sender.py:transition_state():389] send defer: 2 +2023-02-26 17:13:32,982 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:13:32,982 DEBUG SenderThread:118577 [sender.py:send():232] send: stats +2023-02-26 17:13:32,982 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:13:32,983 INFO HandlerThread:118577 [handler.py:handle_request_defer():164] handle defer: 2 +2023-02-26 17:13:32,983 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: defer +2023-02-26 17:13:32,983 INFO SenderThread:118577 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-02-26 17:13:32,983 INFO SenderThread:118577 [sender.py:transition_state():389] send defer: 3 +2023-02-26 17:13:32,983 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:13:32,983 INFO HandlerThread:118577 [handler.py:handle_request_defer():164] handle defer: 3 +2023-02-26 17:13:32,983 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: defer +2023-02-26 17:13:32,983 INFO SenderThread:118577 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-02-26 17:13:32,984 INFO SenderThread:118577 [sender.py:transition_state():389] send defer: 4 +2023-02-26 17:13:32,984 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:13:32,984 INFO HandlerThread:118577 [handler.py:handle_request_defer():164] handle defer: 4 +2023-02-26 17:13:32,984 DEBUG SenderThread:118577 [sender.py:send():232] send: summary +2023-02-26 17:13:32,985 INFO SenderThread:118577 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:13:32,985 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: defer +2023-02-26 17:13:32,985 INFO SenderThread:118577 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-02-26 17:13:32,985 INFO SenderThread:118577 [sender.py:transition_state():389] send defer: 5 +2023-02-26 17:13:32,985 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:13:32,985 INFO HandlerThread:118577 [handler.py:handle_request_defer():164] handle defer: 5 +2023-02-26 17:13:32,986 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: defer +2023-02-26 17:13:32,986 INFO SenderThread:118577 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-02-26 17:13:33,074 INFO SenderThread:118577 [sender.py:transition_state():389] send defer: 6 +2023-02-26 17:13:33,074 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:13:33,075 INFO HandlerThread:118577 [handler.py:handle_request_defer():164] handle defer: 6 +2023-02-26 17:13:33,075 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: defer +2023-02-26 17:13:33,075 INFO SenderThread:118577 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-02-26 17:13:33,075 INFO SenderThread:118577 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 17:13:33,172 INFO Thread-12 :118577 [upload_job.py:push():137] Uploaded file /tmp/tmpsqdb4b4lwandb/38t9sqwh-wandb-metadata.json +2023-02-26 17:13:33,397 INFO Thread-7 :118577 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/config.yaml +2023-02-26 17:13:33,399 INFO SenderThread:118577 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files +2023-02-26 17:13:33,399 INFO SenderThread:118577 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/conda-environment.yaml conda-environment.yaml +2023-02-26 17:13:33,400 INFO SenderThread:118577 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-metadata.json wandb-metadata.json +2023-02-26 17:13:33,400 INFO SenderThread:118577 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/requirements.txt requirements.txt +2023-02-26 17:13:33,402 INFO SenderThread:118577 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-summary.json wandb-summary.json +2023-02-26 17:13:33,403 INFO SenderThread:118577 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/output.log output.log +2023-02-26 17:13:33,408 INFO SenderThread:118577 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/config.yaml config.yaml +2023-02-26 17:13:33,411 INFO SenderThread:118577 [sender.py:transition_state():389] send defer: 7 +2023-02-26 17:13:33,411 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:13:33,412 INFO HandlerThread:118577 [handler.py:handle_request_defer():164] handle defer: 7 +2023-02-26 17:13:33,414 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: defer +2023-02-26 17:13:33,414 INFO SenderThread:118577 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-02-26 17:13:33,415 INFO SenderThread:118577 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:13:33,731 INFO Thread-17 :118577 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/config.yaml +2023-02-26 17:13:33,767 INFO Thread-15 :118577 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/wandb-summary.json +2023-02-26 17:13:33,828 INFO Thread-13 :118577 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/conda-environment.yaml +2023-02-26 17:13:33,857 INFO Thread-14 :118577 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/requirements.txt +2023-02-26 17:13:33,891 INFO Thread-16 :118577 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/files/output.log +2023-02-26 17:13:34,091 INFO Thread-6 :118577 [sender.py:transition_state():389] send defer: 8 +2023-02-26 17:13:34,092 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:13:34,092 INFO HandlerThread:118577 [handler.py:handle_request_defer():164] handle defer: 8 +2023-02-26 17:13:34,092 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: defer +2023-02-26 17:13:34,092 INFO SenderThread:118577 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-02-26 17:13:34,251 INFO SenderThread:118577 [sender.py:transition_state():389] send defer: 9 +2023-02-26 17:13:34,251 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:13:34,251 INFO HandlerThread:118577 [handler.py:handle_request_defer():164] handle defer: 9 +2023-02-26 17:13:34,251 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: defer +2023-02-26 17:13:34,251 INFO SenderThread:118577 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-02-26 17:13:34,251 INFO SenderThread:118577 [sender.py:transition_state():389] send defer: 10 +2023-02-26 17:13:34,252 DEBUG SenderThread:118577 [sender.py:send():232] send: final +2023-02-26 17:13:34,252 DEBUG HandlerThread:118577 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:13:34,252 DEBUG SenderThread:118577 [sender.py:send():232] send: footer +2023-02-26 17:13:34,252 INFO HandlerThread:118577 [handler.py:handle_request_defer():164] handle defer: 10 +2023-02-26 17:13:34,252 DEBUG SenderThread:118577 [sender.py:send_request():246] send_request: defer +2023-02-26 17:13:34,252 INFO SenderThread:118577 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-02-26 17:13:35,542 WARNING MainThread:118577 [internal.py:is_dead():387] Internal process exiting, parent pid 114290 disappeared +2023-02-26 17:13:35,543 ERROR MainThread:118577 [internal.py:wandb_internal():149] Internal process shutdown. +2023-02-26 17:13:36,252 INFO WriterThread:118577 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/run-wj31wtse.wandb +2023-02-26 17:13:36,253 INFO SenderThread:118577 [sender.py:finish():1106] shutting down sender +2023-02-26 17:13:36,253 INFO SenderThread:118577 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:13:36,253 INFO SenderThread:118577 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:13:36,255 INFO HandlerThread:118577 [handler.py:finish():806] shutting down handler +2023-02-26 17:13:36,259 INFO MainThread:118577 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_171300-wj31wtse/logs/debug.log b/yolov5_model/wandb/run-20230226_171300-wj31wtse/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..74eb4218d55741c9c62826fb2c875c9aa646044f --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171300-wj31wtse/logs/debug.log @@ -0,0 +1,36 @@ +2023-02-26 17:13:00,117 INFO MainThread:114290 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 17:13:00,118 INFO MainThread:114290 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 17:13:00,118 INFO MainThread:114290 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 17:13:00,118 INFO MainThread:114290 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 17:13:00,118 INFO MainThread:114290 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 17:13:00,118 INFO MainThread:114290 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/logs/debug.log +2023-02-26 17:13:00,118 INFO MainThread:114290 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171300-wj31wtse/logs/debug-internal.log +2023-02-26 17:13:00,118 INFO MainThread:114290 [wandb_init.py:init():471] calling init triggers +2023-02-26 17:13:00,119 INFO MainThread:114290 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': 16, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 8, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp2'} +2023-02-26 17:13:00,119 INFO MainThread:114290 [wandb_init.py:init():524] starting backend +2023-02-26 17:13:00,119 INFO MainThread:114290 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 17:13:00,139 INFO MainThread:114290 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 17:13:00,211 INFO MainThread:114290 [backend.py:ensure_launched():222] started backend process with pid: 118577 +2023-02-26 17:13:00,213 INFO MainThread:114290 [wandb_init.py:init():533] backend started and connected +2023-02-26 17:13:00,218 INFO MainThread:114290 [wandb_init.py:init():597] updated telemetry +2023-02-26 17:13:00,274 INFO MainThread:114290 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 17:13:05,388 INFO MainThread:114290 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 17:13:05,464 INFO MainThread:114290 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 17:13:05,464 INFO MainThread:114290 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 17:13:10,703 INFO MainThread:114290 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 17:13:10,716 INFO MainThread:114290 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 17:13:10,717 INFO MainThread:114290 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 17:13:10,722 INFO MainThread:114290 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 17:13:10,723 INFO MainThread:114290 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 17:13:14,273 INFO MainThread:114290 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 1 +2023-02-26 17:13:14,278 INFO MainThread:114290 [wandb_run.py:_restore():1838] restore +2023-02-26 17:13:21,905 INFO MainThread:114290 [wandb_run.py:_on_finish():1995] got exit ret: None +2023-02-26 17:13:27,011 INFO MainThread:114290 [wandb_run.py:_on_finish():1995] got exit ret: None +2023-02-26 17:13:32,117 INFO MainThread:114290 [wandb_run.py:_on_finish():1995] got exit ret: None +2023-02-26 17:13:32,397 INFO MainThread:114290 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { +} +pusher_stats { +} + diff --git a/yolov5_model/wandb/run-20230226_171300-wj31wtse/run-wj31wtse.wandb b/yolov5_model/wandb/run-20230226_171300-wj31wtse/run-wj31wtse.wandb new file mode 100644 index 0000000000000000000000000000000000000000..ce7a41edf8ea284844fd2cb5097f971091f8e9bf Binary files /dev/null and b/yolov5_model/wandb/run-20230226_171300-wj31wtse/run-wj31wtse.wandb differ diff --git a/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/config.yaml b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6ac82bbad80d93a07358278be8aa5ea9bc13a0a2 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/config.yaml @@ -0,0 +1,176 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677453309 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 16 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp3 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 40 diff --git a/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/output.log b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..b4e8e32f0665ab911a5e09eaf85780e153f5183a --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/output.log @@ -0,0 +1,52 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 125, in train + model = Model(cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 907, in to + return self._apply(convert) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/models/yolo.py", line 155, in _apply + self = super()._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 601, in _apply + param_applied = fn(param) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 905, in convert + return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) +RuntimeError: CUDA error: out of memory +CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. +For debugging consider passing CUDA_LAUNCH_BLOCKING=1. \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/requirements.txt b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..07be2aa40d91a40d16bff001c755666c02e90fc7 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-metadata.json @@ -0,0 +1,37 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-26T23:15:20.951971", + "startedAt": "2023-02-26T23:15:09.274122", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 8, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "16", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt", + "--workers", + "40" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..e32ca1c76b6fef6bdda575186a787cb42fc39532 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 13}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171509-3v05xuqj/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..06e6bd36ea375b7c5c1d7fadb64255d7b6a47c58 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/logs/debug-internal.log @@ -0,0 +1,151 @@ +2023-02-26 17:15:12,206 INFO MainThread:127521 [internal.py:wandb_internal():90] W&B internal server running at pid: 127521, started at: 2023-02-26 17:15:12.204795 +2023-02-26 17:15:12,208 INFO WriterThread:127521 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/run-3v05xuqj.wandb +2023-02-26 17:15:12,210 DEBUG SenderThread:127521 [sender.py:send():232] send: header +2023-02-26 17:15:12,210 DEBUG SenderThread:127521 [sender.py:send():232] send: run +2023-02-26 17:15:12,220 INFO SenderThread:127521 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/3v05xuqj +2023-02-26 17:15:12,372 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 17:15:12,381 INFO SenderThread:127521 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files +2023-02-26 17:15:12,381 INFO SenderThread:127521 [sender.py:_start_run_threads():811] run started: 3v05xuqj with start time 1677453309 +2023-02-26 17:15:12,381 DEBUG SenderThread:127521 [sender.py:send():232] send: summary +2023-02-26 17:15:12,383 INFO SenderThread:127521 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:15:12,383 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: check_version +2023-02-26 17:15:12,418 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 17:15:16,244 INFO Thread-7 :127521 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-summary.json +2023-02-26 17:15:18,246 INFO Thread-7 :127521 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/output.log +2023-02-26 17:15:20,248 INFO Thread-7 :127521 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/output.log +2023-02-26 17:15:20,951 DEBUG HandlerThread:127521 [meta.py:__init__():35] meta init +2023-02-26 17:15:20,951 DEBUG HandlerThread:127521 [meta.py:__init__():49] meta init done +2023-02-26 17:15:20,951 DEBUG HandlerThread:127521 [meta.py:probe():209] probe +2023-02-26 17:15:20,964 DEBUG HandlerThread:127521 [meta.py:_setup_git():199] setup git +2023-02-26 17:15:21,020 DEBUG HandlerThread:127521 [meta.py:_setup_git():206] setup git done +2023-02-26 17:15:21,020 DEBUG HandlerThread:127521 [meta.py:_save_pip():53] save pip +2023-02-26 17:15:21,022 DEBUG HandlerThread:127521 [meta.py:_save_pip():67] save pip done +2023-02-26 17:15:21,022 DEBUG HandlerThread:127521 [meta.py:_save_conda():74] save conda +2023-02-26 17:15:21,249 INFO Thread-7 :127521 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/conda-environment.yaml +2023-02-26 17:15:21,250 INFO Thread-7 :127521 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/requirements.txt +2023-02-26 17:15:22,250 INFO Thread-7 :127521 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/output.log +2023-02-26 17:15:26,287 INFO Thread-7 :127521 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/conda-environment.yaml +2023-02-26 17:15:26,367 DEBUG HandlerThread:127521 [meta.py:_save_conda():84] save conda done +2023-02-26 17:15:26,367 DEBUG HandlerThread:127521 [meta.py:probe():247] probe done +2023-02-26 17:15:26,406 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:15:26,406 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:15:26,408 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:26,501 DEBUG SenderThread:127521 [sender.py:send():232] send: telemetry +2023-02-26 17:15:26,502 DEBUG SenderThread:127521 [sender.py:send():232] send: telemetry +2023-02-26 17:15:26,503 DEBUG SenderThread:127521 [sender.py:send():232] send: exit +2023-02-26 17:15:26,503 INFO SenderThread:127521 [sender.py:send_exit():368] handling exit code: 1 +2023-02-26 17:15:26,504 INFO SenderThread:127521 [sender.py:send_exit():370] handling runtime: 13 +2023-02-26 17:15:26,505 INFO SenderThread:127521 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:15:26,505 INFO SenderThread:127521 [sender.py:send_exit():376] send defer +2023-02-26 17:15:26,505 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:26,505 DEBUG SenderThread:127521 [sender.py:send():232] send: files +2023-02-26 17:15:26,506 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:15:26,506 INFO SenderThread:127521 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-02-26 17:15:26,506 INFO HandlerThread:127521 [handler.py:handle_request_defer():164] handle defer: 0 +2023-02-26 17:15:26,506 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: defer +2023-02-26 17:15:26,507 INFO SenderThread:127521 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-02-26 17:15:26,507 INFO SenderThread:127521 [sender.py:transition_state():389] send defer: 1 +2023-02-26 17:15:26,507 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:15:26,508 INFO HandlerThread:127521 [handler.py:handle_request_defer():164] handle defer: 1 +2023-02-26 17:15:26,827 INFO Thread-11 :127521 [upload_job.py:push():137] Uploaded file /tmp/tmp1sxcillswandb/3id2tkyh-wandb-metadata.json +2023-02-26 17:15:27,056 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: defer +2023-02-26 17:15:27,056 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:27,056 INFO SenderThread:127521 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-02-26 17:15:27,058 INFO SenderThread:127521 [sender.py:transition_state():389] send defer: 2 +2023-02-26 17:15:27,058 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:27,059 DEBUG SenderThread:127521 [sender.py:send():232] send: stats +2023-02-26 17:15:27,059 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:15:27,062 INFO HandlerThread:127521 [handler.py:handle_request_defer():164] handle defer: 2 +2023-02-26 17:15:27,063 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: defer +2023-02-26 17:15:27,063 INFO SenderThread:127521 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-02-26 17:15:27,063 INFO SenderThread:127521 [sender.py:transition_state():389] send defer: 3 +2023-02-26 17:15:27,064 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:15:27,064 INFO HandlerThread:127521 [handler.py:handle_request_defer():164] handle defer: 3 +2023-02-26 17:15:27,065 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: defer +2023-02-26 17:15:27,065 INFO SenderThread:127521 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-02-26 17:15:27,065 INFO SenderThread:127521 [sender.py:transition_state():389] send defer: 4 +2023-02-26 17:15:27,066 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:15:27,066 INFO HandlerThread:127521 [handler.py:handle_request_defer():164] handle defer: 4 +2023-02-26 17:15:27,066 DEBUG SenderThread:127521 [sender.py:send():232] send: summary +2023-02-26 17:15:27,068 INFO SenderThread:127521 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:15:27,069 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: defer +2023-02-26 17:15:27,069 INFO SenderThread:127521 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-02-26 17:15:27,069 INFO SenderThread:127521 [sender.py:transition_state():389] send defer: 5 +2023-02-26 17:15:27,069 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:15:27,069 INFO HandlerThread:127521 [handler.py:handle_request_defer():164] handle defer: 5 +2023-02-26 17:15:27,069 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: defer +2023-02-26 17:15:27,070 INFO SenderThread:127521 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-02-26 17:15:27,167 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:27,182 INFO SenderThread:127521 [sender.py:transition_state():389] send defer: 6 +2023-02-26 17:15:27,183 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:27,183 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:15:27,183 INFO HandlerThread:127521 [handler.py:handle_request_defer():164] handle defer: 6 +2023-02-26 17:15:27,184 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: defer +2023-02-26 17:15:27,184 INFO SenderThread:127521 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-02-26 17:15:27,184 INFO SenderThread:127521 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 17:15:27,285 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:27,286 INFO Thread-7 :127521 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-summary.json +2023-02-26 17:15:27,395 INFO SenderThread:127521 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/config.yaml +2023-02-26 17:15:27,400 INFO SenderThread:127521 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-metadata.json +2023-02-26 17:15:27,401 INFO SenderThread:127521 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files +2023-02-26 17:15:27,430 INFO SenderThread:127521 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/conda-environment.yaml conda-environment.yaml +2023-02-26 17:15:27,431 INFO SenderThread:127521 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-metadata.json wandb-metadata.json +2023-02-26 17:15:27,431 INFO SenderThread:127521 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/output.log output.log +2023-02-26 17:15:27,440 INFO SenderThread:127521 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-summary.json wandb-summary.json +2023-02-26 17:15:27,441 INFO SenderThread:127521 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/requirements.txt requirements.txt +2023-02-26 17:15:27,444 INFO SenderThread:127521 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/config.yaml config.yaml +2023-02-26 17:15:27,449 INFO SenderThread:127521 [sender.py:transition_state():389] send defer: 7 +2023-02-26 17:15:27,449 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:27,452 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:15:27,454 INFO HandlerThread:127521 [handler.py:handle_request_defer():164] handle defer: 7 +2023-02-26 17:15:27,454 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: defer +2023-02-26 17:15:27,455 INFO SenderThread:127521 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-02-26 17:15:27,455 INFO SenderThread:127521 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:15:27,552 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:27,553 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:27,654 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:27,655 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:27,756 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:27,756 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:27,857 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:27,857 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:27,907 INFO Thread-12 :127521 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/conda-environment.yaml +2023-02-26 17:15:27,908 INFO Thread-16 :127521 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/config.yaml +2023-02-26 17:15:27,908 INFO Thread-14 :127521 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/wandb-summary.json +2023-02-26 17:15:27,934 INFO Thread-13 :127521 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/output.log +2023-02-26 17:15:27,947 INFO Thread-15 :127521 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/files/requirements.txt +2023-02-26 17:15:27,958 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:27,958 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:28,059 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:28,059 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:28,147 INFO Thread-6 :127521 [sender.py:transition_state():389] send defer: 8 +2023-02-26 17:15:28,148 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:15:28,148 INFO HandlerThread:127521 [handler.py:handle_request_defer():164] handle defer: 8 +2023-02-26 17:15:28,148 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: defer +2023-02-26 17:15:28,148 INFO SenderThread:127521 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-02-26 17:15:28,159 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:28,402 INFO SenderThread:127521 [sender.py:transition_state():389] send defer: 9 +2023-02-26 17:15:28,402 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:28,403 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:15:28,403 INFO HandlerThread:127521 [handler.py:handle_request_defer():164] handle defer: 9 +2023-02-26 17:15:28,403 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: defer +2023-02-26 17:15:28,403 INFO SenderThread:127521 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-02-26 17:15:28,403 INFO SenderThread:127521 [sender.py:transition_state():389] send defer: 10 +2023-02-26 17:15:28,462 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:15:28,462 DEBUG SenderThread:127521 [sender.py:send():232] send: final +2023-02-26 17:15:28,463 INFO HandlerThread:127521 [handler.py:handle_request_defer():164] handle defer: 10 +2023-02-26 17:15:28,463 DEBUG SenderThread:127521 [sender.py:send():232] send: footer +2023-02-26 17:15:28,463 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: defer +2023-02-26 17:15:28,463 INFO SenderThread:127521 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-02-26 17:15:28,503 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:15:28,503 DEBUG SenderThread:127521 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:15:28,504 INFO SenderThread:127521 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:15:28,750 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: sampled_history +2023-02-26 17:15:28,750 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: get_summary +2023-02-26 17:15:28,751 DEBUG HandlerThread:127521 [handler.py:handle_request():141] handle_request: shutdown +2023-02-26 17:15:28,751 INFO HandlerThread:127521 [handler.py:finish():806] shutting down handler +2023-02-26 17:15:29,463 INFO WriterThread:127521 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/run-3v05xuqj.wandb +2023-02-26 17:15:29,649 INFO SenderThread:127521 [sender.py:finish():1106] shutting down sender +2023-02-26 17:15:29,649 INFO SenderThread:127521 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:15:29,649 INFO SenderThread:127521 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:15:29,743 INFO MainThread:127521 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_171509-3v05xuqj/logs/debug.log b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..077e0d6621dc5c4e5c7ab93c2b11d095ff4a082e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/logs/debug.log @@ -0,0 +1,129 @@ +2023-02-26 17:15:09,297 INFO MainThread:125366 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 17:15:09,298 INFO MainThread:125366 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 17:15:09,298 INFO MainThread:125366 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 17:15:09,298 INFO MainThread:125366 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 17:15:09,298 INFO MainThread:125366 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 17:15:09,298 INFO MainThread:125366 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/logs/debug.log +2023-02-26 17:15:09,298 INFO MainThread:125366 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171509-3v05xuqj/logs/debug-internal.log +2023-02-26 17:15:09,298 INFO MainThread:125366 [wandb_init.py:init():471] calling init triggers +2023-02-26 17:15:09,299 INFO MainThread:125366 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': 16, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 40, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp3'} +2023-02-26 17:15:09,299 INFO MainThread:125366 [wandb_init.py:init():524] starting backend +2023-02-26 17:15:09,299 INFO MainThread:125366 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 17:15:09,318 INFO MainThread:125366 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 17:15:09,330 INFO MainThread:125366 [backend.py:ensure_launched():222] started backend process with pid: 127521 +2023-02-26 17:15:09,332 INFO MainThread:125366 [wandb_init.py:init():533] backend started and connected +2023-02-26 17:15:09,339 INFO MainThread:125366 [wandb_init.py:init():597] updated telemetry +2023-02-26 17:15:09,387 INFO MainThread:125366 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 17:15:12,372 INFO MainThread:125366 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 17:15:12,416 INFO MainThread:125366 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 17:15:12,416 INFO MainThread:125366 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 17:15:17,465 INFO MainThread:125366 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 17:15:17,467 INFO MainThread:125366 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 17:15:17,468 INFO MainThread:125366 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 17:15:17,470 INFO MainThread:125366 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 17:15:17,470 INFO MainThread:125366 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 17:15:19,491 INFO MainThread:125366 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 1 +2023-02-26 17:15:19,498 INFO MainThread:125366 [wandb_run.py:_restore():1838] restore +2023-02-26 17:15:26,507 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { +} +pusher_stats { +} + +2023-02-26 17:15:27,060 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 +} +pusher_stats { + uploaded_bytes: 1072 + total_bytes: 1072 +} + +2023-02-26 17:15:27,184 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 +} +pusher_stats { + uploaded_bytes: 1072 + total_bytes: 1072 +} + +2023-02-26 17:15:27,452 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 5 +} +pusher_stats { + uploaded_bytes: 1072 + total_bytes: 19547 +} + +2023-02-26 17:15:27,553 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 1072 + total_bytes: 21939 +} + +2023-02-26 17:15:27,655 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 3464 + total_bytes: 21939 +} + +2023-02-26 17:15:27,756 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:15:27,857 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:15:27,958 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:15:28,059 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:15:28,403 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:15:28,649 INFO MainThread:125366 [wandb_run.py:_on_finish():1995] got exit ret: done: true +exit_result { +} +file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} +local_info { +} + +2023-02-26 17:15:32,749 INFO MainThread:125366 [wandb_run.py:_footer_history_summary_info():3102] rendering history +2023-02-26 17:15:32,797 INFO MainThread:125366 [wandb_run.py:_footer_history_summary_info():3134] rendering summary +2023-02-26 17:15:32,871 INFO MainThread:125366 [wandb_run.py:_footer_sync_info():3057] logging synced files diff --git a/yolov5_model/wandb/run-20230226_171509-3v05xuqj/run-3v05xuqj.wandb b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/run-3v05xuqj.wandb new file mode 100644 index 0000000000000000000000000000000000000000..1ae520d35095b54eee41c0ad8eadbe5404004f00 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_171509-3v05xuqj/run-3v05xuqj.wandb differ diff --git a/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/config.yaml b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0615250f441cc6710262b070b87976c4a3271ea5 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/config.yaml @@ -0,0 +1,176 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677453456 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 16 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp4 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 30 diff --git a/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/output.log b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..b4e8e32f0665ab911a5e09eaf85780e153f5183a --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/output.log @@ -0,0 +1,52 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 125, in train + model = Model(cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 907, in to + return self._apply(convert) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/models/yolo.py", line 155, in _apply + self = super()._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 601, in _apply + param_applied = fn(param) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 905, in convert + return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) +RuntimeError: CUDA error: out of memory +CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. +For debugging consider passing CUDA_LAUNCH_BLOCKING=1. \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/requirements.txt b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..be8afabaab20ed19a549bacff02457cf37c92aaa --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-metadata.json @@ -0,0 +1,37 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-26T23:17:55.958683", + "startedAt": "2023-02-26T23:17:36.610904", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 8, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "16", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt", + "--workers", + "30" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..c3ad6a3530e72181b3b2e93339791388b04999cd --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 21}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171736-3oka0g8j/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..1e2e74f3863afa515b2e46de8fb32f3cf6987737 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/logs/debug-internal.log @@ -0,0 +1,153 @@ +2023-02-26 17:17:41,132 INFO MainThread:136579 [internal.py:wandb_internal():90] W&B internal server running at pid: 136579, started at: 2023-02-26 17:17:41.130426 +2023-02-26 17:17:41,146 INFO WriterThread:136579 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/run-3oka0g8j.wandb +2023-02-26 17:17:41,150 DEBUG SenderThread:136579 [sender.py:send():232] send: header +2023-02-26 17:17:41,150 DEBUG SenderThread:136579 [sender.py:send():232] send: run +2023-02-26 17:17:41,160 INFO SenderThread:136579 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/3oka0g8j +2023-02-26 17:17:41,325 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 17:17:41,339 INFO SenderThread:136579 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files +2023-02-26 17:17:41,339 INFO SenderThread:136579 [sender.py:_start_run_threads():811] run started: 3oka0g8j with start time 1677453456 +2023-02-26 17:17:41,339 DEBUG SenderThread:136579 [sender.py:send():232] send: summary +2023-02-26 17:17:41,341 INFO SenderThread:136579 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:17:41,341 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: check_version +2023-02-26 17:17:41,376 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 17:17:48,739 INFO Thread-7 :136579 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-summary.json +2023-02-26 17:17:48,739 INFO Thread-7 :136579 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/output.log +2023-02-26 17:17:50,738 INFO Thread-7 :136579 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/output.log +2023-02-26 17:17:51,739 INFO Thread-7 :136579 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/output.log +2023-02-26 17:17:55,957 DEBUG HandlerThread:136579 [meta.py:__init__():35] meta init +2023-02-26 17:17:55,958 DEBUG HandlerThread:136579 [meta.py:__init__():49] meta init done +2023-02-26 17:17:55,958 DEBUG HandlerThread:136579 [meta.py:probe():209] probe +2023-02-26 17:17:55,967 DEBUG HandlerThread:136579 [meta.py:_setup_git():199] setup git +2023-02-26 17:17:56,003 DEBUG HandlerThread:136579 [meta.py:_setup_git():206] setup git done +2023-02-26 17:17:56,003 DEBUG HandlerThread:136579 [meta.py:_save_pip():53] save pip +2023-02-26 17:17:56,005 DEBUG HandlerThread:136579 [meta.py:_save_pip():67] save pip done +2023-02-26 17:17:56,005 DEBUG HandlerThread:136579 [meta.py:_save_conda():74] save conda +2023-02-26 17:17:56,844 INFO Thread-7 :136579 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/conda-environment.yaml +2023-02-26 17:17:56,845 INFO Thread-7 :136579 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/requirements.txt +2023-02-26 17:18:02,783 DEBUG HandlerThread:136579 [meta.py:_save_conda():84] save conda done +2023-02-26 17:18:02,786 DEBUG HandlerThread:136579 [meta.py:probe():247] probe done +2023-02-26 17:18:02,823 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:18:02,823 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:18:02,846 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:02,849 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:02,850 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:02,868 INFO Thread-7 :136579 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/conda-environment.yaml +2023-02-26 17:18:02,868 INFO Thread-7 :136579 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-metadata.json +2023-02-26 17:18:02,955 DEBUG SenderThread:136579 [sender.py:send():232] send: telemetry +2023-02-26 17:18:02,959 DEBUG SenderThread:136579 [sender.py:send():232] send: telemetry +2023-02-26 17:18:02,959 DEBUG SenderThread:136579 [sender.py:send():232] send: exit +2023-02-26 17:18:02,962 INFO SenderThread:136579 [sender.py:send_exit():368] handling exit code: 1 +2023-02-26 17:18:02,962 INFO SenderThread:136579 [sender.py:send_exit():370] handling runtime: 21 +2023-02-26 17:18:02,964 INFO SenderThread:136579 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:18:02,964 INFO SenderThread:136579 [sender.py:send_exit():376] send defer +2023-02-26 17:18:02,964 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:02,964 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:02,964 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:18:02,965 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:02,965 INFO HandlerThread:136579 [handler.py:handle_request_defer():164] handle defer: 0 +2023-02-26 17:18:02,965 DEBUG SenderThread:136579 [sender.py:send():232] send: files +2023-02-26 17:18:02,966 INFO SenderThread:136579 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-02-26 17:18:02,966 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: defer +2023-02-26 17:18:02,966 INFO SenderThread:136579 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-02-26 17:18:02,966 INFO SenderThread:136579 [sender.py:transition_state():389] send defer: 1 +2023-02-26 17:18:02,967 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:18:02,967 INFO HandlerThread:136579 [handler.py:handle_request_defer():164] handle defer: 1 +2023-02-26 17:18:03,410 INFO Thread-11 :136579 [upload_job.py:push():137] Uploaded file /tmp/tmpq3z9ez4hwandb/1l3i96po-wandb-metadata.json +2023-02-26 17:18:03,493 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:03,493 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: defer +2023-02-26 17:18:03,495 INFO SenderThread:136579 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-02-26 17:18:03,495 INFO SenderThread:136579 [sender.py:transition_state():389] send defer: 2 +2023-02-26 17:18:03,495 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:03,495 DEBUG SenderThread:136579 [sender.py:send():232] send: stats +2023-02-26 17:18:03,496 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:18:03,497 INFO HandlerThread:136579 [handler.py:handle_request_defer():164] handle defer: 2 +2023-02-26 17:18:03,497 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: defer +2023-02-26 17:18:03,497 INFO SenderThread:136579 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-02-26 17:18:03,497 INFO SenderThread:136579 [sender.py:transition_state():389] send defer: 3 +2023-02-26 17:18:03,497 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:18:03,497 INFO HandlerThread:136579 [handler.py:handle_request_defer():164] handle defer: 3 +2023-02-26 17:18:03,497 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: defer +2023-02-26 17:18:03,498 INFO SenderThread:136579 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-02-26 17:18:03,498 INFO SenderThread:136579 [sender.py:transition_state():389] send defer: 4 +2023-02-26 17:18:03,498 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:18:03,498 INFO HandlerThread:136579 [handler.py:handle_request_defer():164] handle defer: 4 +2023-02-26 17:18:03,498 DEBUG SenderThread:136579 [sender.py:send():232] send: summary +2023-02-26 17:18:03,500 INFO SenderThread:136579 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:18:03,500 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: defer +2023-02-26 17:18:03,500 INFO SenderThread:136579 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-02-26 17:18:03,500 INFO SenderThread:136579 [sender.py:transition_state():389] send defer: 5 +2023-02-26 17:18:03,500 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:18:03,500 INFO HandlerThread:136579 [handler.py:handle_request_defer():164] handle defer: 5 +2023-02-26 17:18:03,501 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: defer +2023-02-26 17:18:03,501 INFO SenderThread:136579 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-02-26 17:18:03,589 INFO SenderThread:136579 [sender.py:transition_state():389] send defer: 6 +2023-02-26 17:18:03,589 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:18:03,589 INFO HandlerThread:136579 [handler.py:handle_request_defer():164] handle defer: 6 +2023-02-26 17:18:03,590 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: defer +2023-02-26 17:18:03,590 INFO SenderThread:136579 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-02-26 17:18:03,590 INFO SenderThread:136579 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 17:18:03,598 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:03,870 INFO SenderThread:136579 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/config.yaml +2023-02-26 17:18:03,870 INFO SenderThread:136579 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-summary.json +2023-02-26 17:18:03,870 INFO SenderThread:136579 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files +2023-02-26 17:18:03,872 INFO SenderThread:136579 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/requirements.txt requirements.txt +2023-02-26 17:18:03,873 INFO SenderThread:136579 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/output.log output.log +2023-02-26 17:18:03,873 INFO SenderThread:136579 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/conda-environment.yaml conda-environment.yaml +2023-02-26 17:18:03,878 INFO SenderThread:136579 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/config.yaml config.yaml +2023-02-26 17:18:03,881 INFO SenderThread:136579 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-metadata.json wandb-metadata.json +2023-02-26 17:18:03,881 INFO SenderThread:136579 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-summary.json wandb-summary.json +2023-02-26 17:18:03,885 INFO SenderThread:136579 [sender.py:transition_state():389] send defer: 7 +2023-02-26 17:18:03,885 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:03,886 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:18:03,888 INFO HandlerThread:136579 [handler.py:handle_request_defer():164] handle defer: 7 +2023-02-26 17:18:03,888 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: defer +2023-02-26 17:18:03,889 INFO SenderThread:136579 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-02-26 17:18:03,891 INFO SenderThread:136579 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:18:03,990 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:03,990 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:04,091 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:04,092 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:04,193 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:04,193 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:04,271 INFO Thread-16 :136579 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/wandb-summary.json +2023-02-26 17:18:04,281 INFO Thread-12 :136579 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/requirements.txt +2023-02-26 17:18:04,295 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:04,295 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:04,324 INFO Thread-15 :136579 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/config.yaml +2023-02-26 17:18:04,336 INFO Thread-13 :136579 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/output.log +2023-02-26 17:18:04,348 INFO Thread-14 :136579 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/files/conda-environment.yaml +2023-02-26 17:18:04,396 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:04,396 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:04,497 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:04,497 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:04,548 INFO Thread-6 :136579 [sender.py:transition_state():389] send defer: 8 +2023-02-26 17:18:04,549 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:18:04,550 INFO HandlerThread:136579 [handler.py:handle_request_defer():164] handle defer: 8 +2023-02-26 17:18:04,550 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: defer +2023-02-26 17:18:04,550 INFO SenderThread:136579 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-02-26 17:18:04,598 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:04,746 INFO SenderThread:136579 [sender.py:transition_state():389] send defer: 9 +2023-02-26 17:18:04,746 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:04,747 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:18:04,747 INFO HandlerThread:136579 [handler.py:handle_request_defer():164] handle defer: 9 +2023-02-26 17:18:04,748 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: defer +2023-02-26 17:18:04,748 INFO SenderThread:136579 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-02-26 17:18:04,748 INFO SenderThread:136579 [sender.py:transition_state():389] send defer: 10 +2023-02-26 17:18:04,748 DEBUG SenderThread:136579 [sender.py:send():232] send: final +2023-02-26 17:18:04,749 DEBUG SenderThread:136579 [sender.py:send():232] send: footer +2023-02-26 17:18:04,749 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:18:04,749 INFO HandlerThread:136579 [handler.py:handle_request_defer():164] handle defer: 10 +2023-02-26 17:18:04,749 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: defer +2023-02-26 17:18:04,750 INFO SenderThread:136579 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-02-26 17:18:04,849 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:18:04,849 DEBUG SenderThread:136579 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:18:04,850 INFO SenderThread:136579 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:18:05,103 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: sampled_history +2023-02-26 17:18:05,108 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: get_summary +2023-02-26 17:18:05,109 DEBUG HandlerThread:136579 [handler.py:handle_request():141] handle_request: shutdown +2023-02-26 17:18:05,109 INFO HandlerThread:136579 [handler.py:finish():806] shutting down handler +2023-02-26 17:18:05,753 INFO WriterThread:136579 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/run-3oka0g8j.wandb +2023-02-26 17:18:05,996 INFO SenderThread:136579 [sender.py:finish():1106] shutting down sender +2023-02-26 17:18:05,996 INFO SenderThread:136579 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:18:06,014 INFO SenderThread:136579 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:18:06,066 INFO MainThread:136579 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_171736-3oka0g8j/logs/debug.log b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..16ceb853ed17e115cd0e6a333a94caa4409f450c --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/logs/debug.log @@ -0,0 +1,123 @@ +2023-02-26 17:17:36,656 INFO MainThread:130203 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 17:17:36,660 INFO MainThread:130203 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 17:17:36,660 INFO MainThread:130203 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 17:17:36,660 INFO MainThread:130203 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 17:17:36,660 INFO MainThread:130203 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 17:17:36,660 INFO MainThread:130203 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/logs/debug.log +2023-02-26 17:17:36,660 INFO MainThread:130203 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171736-3oka0g8j/logs/debug-internal.log +2023-02-26 17:17:36,660 INFO MainThread:130203 [wandb_init.py:init():471] calling init triggers +2023-02-26 17:17:36,661 INFO MainThread:130203 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': 16, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 30, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp4'} +2023-02-26 17:17:36,661 INFO MainThread:130203 [wandb_init.py:init():524] starting backend +2023-02-26 17:17:36,661 INFO MainThread:130203 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 17:17:36,718 INFO MainThread:130203 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 17:17:36,759 INFO MainThread:130203 [backend.py:ensure_launched():222] started backend process with pid: 136579 +2023-02-26 17:17:36,761 INFO MainThread:130203 [wandb_init.py:init():533] backend started and connected +2023-02-26 17:17:36,768 INFO MainThread:130203 [wandb_init.py:init():597] updated telemetry +2023-02-26 17:17:36,821 INFO MainThread:130203 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 17:17:41,323 INFO MainThread:130203 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 17:17:41,374 INFO MainThread:130203 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 17:17:41,374 INFO MainThread:130203 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 17:17:46,599 INFO MainThread:130203 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 17:17:46,601 INFO MainThread:130203 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 17:17:46,602 INFO MainThread:130203 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 17:17:46,608 INFO MainThread:130203 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 17:17:46,608 INFO MainThread:130203 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 17:17:49,141 INFO MainThread:130203 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 1 +2023-02-26 17:17:49,150 INFO MainThread:130203 [wandb_run.py:_restore():1838] restore +2023-02-26 17:17:56,679 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: None +2023-02-26 17:18:01,833 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: None +2023-02-26 17:18:02,966 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { +} +pusher_stats { +} + +2023-02-26 17:18:03,496 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 +} +pusher_stats { + uploaded_bytes: 1072 + total_bytes: 1072 +} + +2023-02-26 17:18:03,889 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 5 +} +pusher_stats { + uploaded_bytes: 1072 + total_bytes: 21912 +} + +2023-02-26 17:18:03,991 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 1072 + total_bytes: 21939 +} + +2023-02-26 17:18:04,092 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:18:04,194 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:18:04,295 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:18:04,396 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:18:04,497 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:18:04,748 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:18:04,998 INFO MainThread:130203 [wandb_run.py:_on_finish():1995] got exit ret: done: true +exit_result { +} +file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} +local_info { +} + +2023-02-26 17:18:07,626 INFO MainThread:130203 [wandb_run.py:_footer_history_summary_info():3102] rendering history +2023-02-26 17:18:07,633 INFO MainThread:130203 [wandb_run.py:_footer_history_summary_info():3134] rendering summary +2023-02-26 17:18:07,664 INFO MainThread:130203 [wandb_run.py:_footer_sync_info():3057] logging synced files diff --git a/yolov5_model/wandb/run-20230226_171736-3oka0g8j/run-3oka0g8j.wandb b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/run-3oka0g8j.wandb new file mode 100644 index 0000000000000000000000000000000000000000..c82dba3dc5ee0d5e68ac603a846b960da89e86d7 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_171736-3oka0g8j/run-3oka0g8j.wandb differ diff --git a/yolov5_model/wandb/run-20230226_171848-1806ognd/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_171848-1806ognd/files/config.yaml b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..330b3bae8a321671fa841cdd6696669116f092d9 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/config.yaml @@ -0,0 +1,176 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677453528 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 8 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp5 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 30 diff --git a/yolov5_model/wandb/run-20230226_171848-1806ognd/files/output.log b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..b4e8e32f0665ab911a5e09eaf85780e153f5183a --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/output.log @@ -0,0 +1,52 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 125, in train + model = Model(cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 907, in to + return self._apply(convert) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/models/yolo.py", line 155, in _apply + self = super()._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 601, in _apply + param_applied = fn(param) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 905, in convert + return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) +RuntimeError: CUDA error: out of memory +CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. +For debugging consider passing CUDA_LAUNCH_BLOCKING=1. \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171848-1806ognd/files/requirements.txt b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..b9943c5849a896d889cf1a96f83fcd5946e4c9e0 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-metadata.json @@ -0,0 +1,37 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-26T23:18:58.190526", + "startedAt": "2023-02-26T23:18:48.307158", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 8, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "8", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt", + "--workers", + "30" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..e776ad5e9dd16ad8bbb479aaf2ef49394318a964 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 23}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_171848-1806ognd/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_171848-1806ognd/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..028c2d1f78b3e6e1f03726d230f2b818ae5f4954 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171848-1806ognd/logs/debug-internal.log @@ -0,0 +1,155 @@ +2023-02-26 17:18:51,738 INFO MainThread:141107 [internal.py:wandb_internal():90] W&B internal server running at pid: 141107, started at: 2023-02-26 17:18:51.737101 +2023-02-26 17:18:51,740 INFO WriterThread:141107 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/run-1806ognd.wandb +2023-02-26 17:18:51,743 DEBUG SenderThread:141107 [sender.py:send():232] send: header +2023-02-26 17:18:51,743 DEBUG SenderThread:141107 [sender.py:send():232] send: run +2023-02-26 17:18:51,752 INFO SenderThread:141107 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/1806ognd +2023-02-26 17:18:51,917 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 17:18:51,927 INFO SenderThread:141107 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files +2023-02-26 17:18:51,928 INFO SenderThread:141107 [sender.py:_start_run_threads():811] run started: 1806ognd with start time 1677453528 +2023-02-26 17:18:51,928 DEBUG SenderThread:141107 [sender.py:send():232] send: summary +2023-02-26 17:18:51,929 INFO SenderThread:141107 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:18:51,930 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: check_version +2023-02-26 17:18:51,985 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 17:18:52,936 INFO Thread-7 :141107 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-summary.json +2023-02-26 17:18:56,994 INFO Thread-7 :141107 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/output.log +2023-02-26 17:18:58,190 DEBUG HandlerThread:141107 [meta.py:__init__():35] meta init +2023-02-26 17:18:58,190 DEBUG HandlerThread:141107 [meta.py:__init__():49] meta init done +2023-02-26 17:18:58,190 DEBUG HandlerThread:141107 [meta.py:probe():209] probe +2023-02-26 17:18:58,206 DEBUG HandlerThread:141107 [meta.py:_setup_git():199] setup git +2023-02-26 17:18:58,414 DEBUG HandlerThread:141107 [meta.py:_setup_git():206] setup git done +2023-02-26 17:18:58,415 DEBUG HandlerThread:141107 [meta.py:_save_pip():53] save pip +2023-02-26 17:18:58,418 DEBUG HandlerThread:141107 [meta.py:_save_pip():67] save pip done +2023-02-26 17:18:58,419 DEBUG HandlerThread:141107 [meta.py:_save_conda():74] save conda +2023-02-26 17:18:58,999 INFO Thread-7 :141107 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/conda-environment.yaml +2023-02-26 17:18:59,000 INFO Thread-7 :141107 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/requirements.txt +2023-02-26 17:19:00,001 INFO Thread-7 :141107 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/output.log +2023-02-26 17:19:02,005 INFO Thread-7 :141107 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/output.log +2023-02-26 17:19:04,039 INFO Thread-7 :141107 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/output.log +2023-02-26 17:19:05,034 INFO Thread-7 :141107 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/output.log +2023-02-26 17:19:14,386 INFO Thread-7 :141107 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/conda-environment.yaml +2023-02-26 17:19:14,990 DEBUG HandlerThread:141107 [meta.py:_save_conda():84] save conda done +2023-02-26 17:19:14,990 DEBUG HandlerThread:141107 [meta.py:probe():247] probe done +2023-02-26 17:19:15,329 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:19:15,330 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:19:15,393 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:15,404 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:15,409 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:15,413 INFO Thread-7 :141107 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-metadata.json +2023-02-26 17:19:15,708 DEBUG SenderThread:141107 [sender.py:send():232] send: telemetry +2023-02-26 17:19:15,711 DEBUG SenderThread:141107 [sender.py:send():232] send: telemetry +2023-02-26 17:19:15,720 DEBUG SenderThread:141107 [sender.py:send():232] send: exit +2023-02-26 17:19:15,723 INFO SenderThread:141107 [sender.py:send_exit():368] handling exit code: 1 +2023-02-26 17:19:15,724 INFO SenderThread:141107 [sender.py:send_exit():370] handling runtime: 23 +2023-02-26 17:19:15,727 INFO SenderThread:141107 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:19:15,727 INFO SenderThread:141107 [sender.py:send_exit():376] send defer +2023-02-26 17:19:15,727 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:15,728 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:15,729 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:19:15,729 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:15,730 INFO HandlerThread:141107 [handler.py:handle_request_defer():164] handle defer: 0 +2023-02-26 17:19:15,730 DEBUG SenderThread:141107 [sender.py:send():232] send: files +2023-02-26 17:19:15,730 INFO SenderThread:141107 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-02-26 17:19:15,731 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: defer +2023-02-26 17:19:15,731 INFO SenderThread:141107 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-02-26 17:19:15,732 INFO SenderThread:141107 [sender.py:transition_state():389] send defer: 1 +2023-02-26 17:19:15,732 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:19:15,732 INFO HandlerThread:141107 [handler.py:handle_request_defer():164] handle defer: 1 +2023-02-26 17:19:16,352 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:16,352 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: defer +2023-02-26 17:19:16,353 INFO SenderThread:141107 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-02-26 17:19:16,353 INFO SenderThread:141107 [sender.py:transition_state():389] send defer: 2 +2023-02-26 17:19:16,353 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:16,354 DEBUG SenderThread:141107 [sender.py:send():232] send: stats +2023-02-26 17:19:16,354 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:19:16,355 INFO HandlerThread:141107 [handler.py:handle_request_defer():164] handle defer: 2 +2023-02-26 17:19:16,355 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: defer +2023-02-26 17:19:16,356 INFO SenderThread:141107 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-02-26 17:19:16,356 INFO SenderThread:141107 [sender.py:transition_state():389] send defer: 3 +2023-02-26 17:19:16,356 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:19:16,356 INFO HandlerThread:141107 [handler.py:handle_request_defer():164] handle defer: 3 +2023-02-26 17:19:16,356 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: defer +2023-02-26 17:19:16,356 INFO SenderThread:141107 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-02-26 17:19:16,356 INFO SenderThread:141107 [sender.py:transition_state():389] send defer: 4 +2023-02-26 17:19:16,356 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:19:16,356 INFO HandlerThread:141107 [handler.py:handle_request_defer():164] handle defer: 4 +2023-02-26 17:19:16,357 DEBUG SenderThread:141107 [sender.py:send():232] send: summary +2023-02-26 17:19:16,358 INFO SenderThread:141107 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:19:16,358 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: defer +2023-02-26 17:19:16,358 INFO SenderThread:141107 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-02-26 17:19:16,358 INFO SenderThread:141107 [sender.py:transition_state():389] send defer: 5 +2023-02-26 17:19:16,359 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:19:16,359 INFO HandlerThread:141107 [handler.py:handle_request_defer():164] handle defer: 5 +2023-02-26 17:19:16,359 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: defer +2023-02-26 17:19:16,359 INFO SenderThread:141107 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-02-26 17:19:16,367 INFO Thread-11 :141107 [upload_job.py:push():137] Uploaded file /tmp/tmpd7hf76_9wandb/16t2bntv-wandb-metadata.json +2023-02-26 17:19:16,415 INFO Thread-7 :141107 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-summary.json +2023-02-26 17:19:16,461 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:16,680 INFO SenderThread:141107 [sender.py:transition_state():389] send defer: 6 +2023-02-26 17:19:16,686 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:16,688 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:19:16,688 INFO HandlerThread:141107 [handler.py:handle_request_defer():164] handle defer: 6 +2023-02-26 17:19:16,688 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: defer +2023-02-26 17:19:16,688 INFO SenderThread:141107 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-02-26 17:19:16,688 INFO SenderThread:141107 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 17:19:17,009 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:17,527 INFO SenderThread:141107 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/config.yaml +2023-02-26 17:19:17,528 INFO SenderThread:141107 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files +2023-02-26 17:19:17,529 INFO SenderThread:141107 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/output.log output.log +2023-02-26 17:19:17,529 INFO SenderThread:141107 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/requirements.txt requirements.txt +2023-02-26 17:19:17,529 INFO SenderThread:141107 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/config.yaml config.yaml +2023-02-26 17:19:17,533 INFO SenderThread:141107 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-metadata.json wandb-metadata.json +2023-02-26 17:19:17,534 INFO SenderThread:141107 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/conda-environment.yaml conda-environment.yaml +2023-02-26 17:19:17,540 INFO SenderThread:141107 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-summary.json wandb-summary.json +2023-02-26 17:19:17,540 INFO SenderThread:141107 [sender.py:transition_state():389] send defer: 7 +2023-02-26 17:19:17,542 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:17,549 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:19:17,551 INFO HandlerThread:141107 [handler.py:handle_request_defer():164] handle defer: 7 +2023-02-26 17:19:17,551 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: defer +2023-02-26 17:19:17,552 INFO SenderThread:141107 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-02-26 17:19:17,552 INFO SenderThread:141107 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:19:17,648 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:17,650 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:17,878 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:17,878 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:18,014 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:18,022 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:18,161 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:18,200 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:18,202 INFO Thread-16 :141107 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/wandb-summary.json +2023-02-26 17:19:18,202 INFO Thread-14 :141107 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/config.yaml +2023-02-26 17:19:18,203 INFO Thread-12 :141107 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/output.log +2023-02-26 17:19:18,232 INFO Thread-15 :141107 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/conda-environment.yaml +2023-02-26 17:19:18,235 INFO Thread-13 :141107 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/files/requirements.txt +2023-02-26 17:19:18,331 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:18,348 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:18,439 INFO Thread-6 :141107 [sender.py:transition_state():389] send defer: 8 +2023-02-26 17:19:18,441 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:19:18,441 INFO HandlerThread:141107 [handler.py:handle_request_defer():164] handle defer: 8 +2023-02-26 17:19:18,441 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: defer +2023-02-26 17:19:18,441 INFO SenderThread:141107 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-02-26 17:19:18,450 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:19,301 INFO SenderThread:141107 [sender.py:transition_state():389] send defer: 9 +2023-02-26 17:19:19,312 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:19,315 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:19:19,316 INFO HandlerThread:141107 [handler.py:handle_request_defer():164] handle defer: 9 +2023-02-26 17:19:19,317 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: defer +2023-02-26 17:19:19,317 INFO SenderThread:141107 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-02-26 17:19:19,317 INFO SenderThread:141107 [sender.py:transition_state():389] send defer: 10 +2023-02-26 17:19:19,324 DEBUG SenderThread:141107 [sender.py:send():232] send: final +2023-02-26 17:19:19,324 DEBUG SenderThread:141107 [sender.py:send():232] send: footer +2023-02-26 17:19:19,324 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:19:19,325 INFO HandlerThread:141107 [handler.py:handle_request_defer():164] handle defer: 10 +2023-02-26 17:19:19,325 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: defer +2023-02-26 17:19:19,325 INFO SenderThread:141107 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-02-26 17:19:19,434 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:19:19,434 DEBUG SenderThread:141107 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:19:19,435 INFO SenderThread:141107 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:19:20,221 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: sampled_history +2023-02-26 17:19:20,223 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: get_summary +2023-02-26 17:19:20,224 DEBUG HandlerThread:141107 [handler.py:handle_request():141] handle_request: shutdown +2023-02-26 17:19:20,224 INFO HandlerThread:141107 [handler.py:finish():806] shutting down handler +2023-02-26 17:19:20,403 INFO WriterThread:141107 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/run-1806ognd.wandb +2023-02-26 17:19:21,084 INFO SenderThread:141107 [sender.py:finish():1106] shutting down sender +2023-02-26 17:19:21,086 INFO SenderThread:141107 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:19:21,086 INFO SenderThread:141107 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:19:21,097 INFO MainThread:141107 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_171848-1806ognd/logs/debug.log b/yolov5_model/wandb/run-20230226_171848-1806ognd/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..b6262f6f1c1e027c2ac5db8361de1b8de214c531 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_171848-1806ognd/logs/debug.log @@ -0,0 +1,123 @@ +2023-02-26 17:18:48,324 INFO MainThread:138947 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 17:18:48,324 INFO MainThread:138947 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 17:18:48,324 INFO MainThread:138947 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 17:18:48,324 INFO MainThread:138947 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 17:18:48,324 INFO MainThread:138947 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 17:18:48,325 INFO MainThread:138947 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/logs/debug.log +2023-02-26 17:18:48,325 INFO MainThread:138947 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_171848-1806ognd/logs/debug-internal.log +2023-02-26 17:18:48,325 INFO MainThread:138947 [wandb_init.py:init():471] calling init triggers +2023-02-26 17:18:48,325 INFO MainThread:138947 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': 8, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 30, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp5'} +2023-02-26 17:18:48,325 INFO MainThread:138947 [wandb_init.py:init():524] starting backend +2023-02-26 17:18:48,325 INFO MainThread:138947 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 17:18:48,341 INFO MainThread:138947 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 17:18:48,352 INFO MainThread:138947 [backend.py:ensure_launched():222] started backend process with pid: 141107 +2023-02-26 17:18:48,354 INFO MainThread:138947 [wandb_init.py:init():533] backend started and connected +2023-02-26 17:18:48,361 INFO MainThread:138947 [wandb_init.py:init():597] updated telemetry +2023-02-26 17:18:48,409 INFO MainThread:138947 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 17:18:51,916 INFO MainThread:138947 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 17:18:51,977 INFO MainThread:138947 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 17:18:51,982 INFO MainThread:138947 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 17:18:56,991 INFO MainThread:138947 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 17:18:56,993 INFO MainThread:138947 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 17:18:56,994 INFO MainThread:138947 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 17:18:56,996 INFO MainThread:138947 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 17:18:56,996 INFO MainThread:138947 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 17:19:02,068 INFO MainThread:138947 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 1 +2023-02-26 17:19:02,072 INFO MainThread:138947 [wandb_run.py:_restore():1838] restore +2023-02-26 17:19:09,404 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: None +2023-02-26 17:19:14,869 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: None +2023-02-26 17:19:15,731 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { +} +pusher_stats { +} + +2023-02-26 17:19:16,355 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 +} +pusher_stats { + uploaded_bytes: 1071 + total_bytes: 1071 +} + +2023-02-26 17:19:16,688 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 +} +pusher_stats { + uploaded_bytes: 1071 + total_bytes: 1071 +} + +2023-02-26 17:19:17,546 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 1071 + total_bytes: 21937 +} + +2023-02-26 17:19:17,651 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 1071 + total_bytes: 21937 +} + +2023-02-26 17:19:17,879 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 1071 + total_bytes: 21937 +} + +2023-02-26 17:19:18,023 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21937 + total_bytes: 21937 +} + +2023-02-26 17:19:18,203 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21937 + total_bytes: 21937 +} + +2023-02-26 17:19:18,350 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21937 + total_bytes: 21937 +} + +2023-02-26 17:19:19,318 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21937 + total_bytes: 21937 +} + +2023-02-26 17:19:20,120 INFO MainThread:138947 [wandb_run.py:_on_finish():1995] got exit ret: done: true +exit_result { +} +file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21937 + total_bytes: 21937 +} +local_info { +} + +2023-02-26 17:19:25,608 INFO MainThread:138947 [wandb_run.py:_footer_history_summary_info():3102] rendering history +2023-02-26 17:19:25,640 INFO MainThread:138947 [wandb_run.py:_footer_history_summary_info():3134] rendering summary +2023-02-26 17:19:25,851 INFO MainThread:138947 [wandb_run.py:_footer_sync_info():3057] logging synced files diff --git a/yolov5_model/wandb/run-20230226_171848-1806ognd/run-1806ognd.wandb b/yolov5_model/wandb/run-20230226_171848-1806ognd/run-1806ognd.wandb new file mode 100644 index 0000000000000000000000000000000000000000..8a47eab32d4a1c1f814f4b3c691a9ef98219af23 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_171848-1806ognd/run-1806ognd.wandb differ diff --git a/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/config.yaml b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b691bd695e940fd3ef2ce290a318d2d980ce5246 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/config.yaml @@ -0,0 +1,176 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677453663 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: -1 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp6 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 30 diff --git a/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/output.log b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..b4e8e32f0665ab911a5e09eaf85780e153f5183a --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/output.log @@ -0,0 +1,52 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 125, in train + model = Model(cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 907, in to + return self._apply(convert) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/models/yolo.py", line 155, in _apply + self = super()._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 601, in _apply + param_applied = fn(param) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 905, in convert + return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) +RuntimeError: CUDA error: out of memory +CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. +For debugging consider passing CUDA_LAUNCH_BLOCKING=1. \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/requirements.txt b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..d242320cdd3539d5d0f942265bb0dfbb8e456252 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-metadata.json @@ -0,0 +1,37 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-26T23:21:12.067241", + "startedAt": "2023-02-26T23:21:03.634748", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 8, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "-1", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt", + "--workers", + "30" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..8bf99d152ad35c3699ec8600ecb8b169d4e35875 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 11}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_172103-skuwodjc/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_172103-skuwodjc/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..ed6a62170bab488c20e84c4810202ffa889c16a7 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172103-skuwodjc/logs/debug-internal.log @@ -0,0 +1,147 @@ +2023-02-26 17:21:06,682 INFO MainThread:148168 [internal.py:wandb_internal():90] W&B internal server running at pid: 148168, started at: 2023-02-26 17:21:06.680939 +2023-02-26 17:21:06,684 INFO WriterThread:148168 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/run-skuwodjc.wandb +2023-02-26 17:21:06,686 DEBUG SenderThread:148168 [sender.py:send():232] send: header +2023-02-26 17:21:06,687 DEBUG SenderThread:148168 [sender.py:send():232] send: run +2023-02-26 17:21:06,696 INFO SenderThread:148168 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/skuwodjc +2023-02-26 17:21:06,869 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 17:21:06,876 INFO SenderThread:148168 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files +2023-02-26 17:21:06,877 INFO SenderThread:148168 [sender.py:_start_run_threads():811] run started: skuwodjc with start time 1677453663 +2023-02-26 17:21:06,877 DEBUG SenderThread:148168 [sender.py:send():232] send: summary +2023-02-26 17:21:06,878 INFO SenderThread:148168 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:21:06,878 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: check_version +2023-02-26 17:21:06,916 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 17:21:08,251 INFO Thread-7 :148168 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-summary.json +2023-02-26 17:21:12,066 DEBUG HandlerThread:148168 [meta.py:__init__():35] meta init +2023-02-26 17:21:12,067 DEBUG HandlerThread:148168 [meta.py:__init__():49] meta init done +2023-02-26 17:21:12,067 DEBUG HandlerThread:148168 [meta.py:probe():209] probe +2023-02-26 17:21:12,076 DEBUG HandlerThread:148168 [meta.py:_setup_git():199] setup git +2023-02-26 17:21:12,115 DEBUG HandlerThread:148168 [meta.py:_setup_git():206] setup git done +2023-02-26 17:21:12,115 DEBUG HandlerThread:148168 [meta.py:_save_pip():53] save pip +2023-02-26 17:21:12,117 DEBUG HandlerThread:148168 [meta.py:_save_pip():67] save pip done +2023-02-26 17:21:12,117 DEBUG HandlerThread:148168 [meta.py:_save_conda():74] save conda +2023-02-26 17:21:12,255 INFO Thread-7 :148168 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/output.log +2023-02-26 17:21:12,256 INFO Thread-7 :148168 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/requirements.txt +2023-02-26 17:21:12,256 INFO Thread-7 :148168 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/conda-environment.yaml +2023-02-26 17:21:14,257 INFO Thread-7 :148168 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/output.log +2023-02-26 17:21:16,258 INFO Thread-7 :148168 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/output.log +2023-02-26 17:21:17,886 DEBUG HandlerThread:148168 [meta.py:_save_conda():84] save conda done +2023-02-26 17:21:17,888 DEBUG HandlerThread:148168 [meta.py:probe():247] probe done +2023-02-26 17:21:17,922 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:21:17,922 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:21:17,938 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:21:18,006 DEBUG SenderThread:148168 [sender.py:send():232] send: telemetry +2023-02-26 17:21:18,007 DEBUG SenderThread:148168 [sender.py:send():232] send: telemetry +2023-02-26 17:21:18,007 DEBUG SenderThread:148168 [sender.py:send():232] send: exit +2023-02-26 17:21:18,009 INFO SenderThread:148168 [sender.py:send_exit():368] handling exit code: 1 +2023-02-26 17:21:18,009 INFO SenderThread:148168 [sender.py:send_exit():370] handling runtime: 11 +2023-02-26 17:21:18,011 INFO SenderThread:148168 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:21:18,011 INFO SenderThread:148168 [sender.py:send_exit():376] send defer +2023-02-26 17:21:18,011 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:21:18,011 DEBUG SenderThread:148168 [sender.py:send():232] send: files +2023-02-26 17:21:18,012 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:21:18,012 INFO SenderThread:148168 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-02-26 17:21:18,012 INFO HandlerThread:148168 [handler.py:handle_request_defer():164] handle defer: 0 +2023-02-26 17:21:18,012 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: defer +2023-02-26 17:21:18,013 INFO SenderThread:148168 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-02-26 17:21:18,013 INFO SenderThread:148168 [sender.py:transition_state():389] send defer: 1 +2023-02-26 17:21:18,014 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:21:18,014 INFO HandlerThread:148168 [handler.py:handle_request_defer():164] handle defer: 1 +2023-02-26 17:21:18,263 INFO Thread-7 :148168 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/conda-environment.yaml +2023-02-26 17:21:18,263 INFO Thread-7 :148168 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-summary.json +2023-02-26 17:21:18,263 INFO Thread-7 :148168 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-metadata.json +2023-02-26 17:21:18,468 INFO Thread-11 :148168 [upload_job.py:push():137] Uploaded file /tmp/tmpoxj61ml2wandb/3bmrsw9r-wandb-metadata.json +2023-02-26 17:21:18,485 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:21:18,485 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: defer +2023-02-26 17:21:18,486 INFO SenderThread:148168 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-02-26 17:21:18,486 INFO SenderThread:148168 [sender.py:transition_state():389] send defer: 2 +2023-02-26 17:21:18,486 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:21:18,486 DEBUG SenderThread:148168 [sender.py:send():232] send: stats +2023-02-26 17:21:18,486 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:21:18,487 INFO HandlerThread:148168 [handler.py:handle_request_defer():164] handle defer: 2 +2023-02-26 17:21:18,487 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: defer +2023-02-26 17:21:18,487 INFO SenderThread:148168 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-02-26 17:21:18,487 INFO SenderThread:148168 [sender.py:transition_state():389] send defer: 3 +2023-02-26 17:21:18,487 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:21:18,487 INFO HandlerThread:148168 [handler.py:handle_request_defer():164] handle defer: 3 +2023-02-26 17:21:18,488 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: defer +2023-02-26 17:21:18,488 INFO SenderThread:148168 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-02-26 17:21:18,488 INFO SenderThread:148168 [sender.py:transition_state():389] send defer: 4 +2023-02-26 17:21:18,488 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:21:18,488 INFO HandlerThread:148168 [handler.py:handle_request_defer():164] handle defer: 4 +2023-02-26 17:21:18,488 DEBUG SenderThread:148168 [sender.py:send():232] send: summary +2023-02-26 17:21:18,489 INFO SenderThread:148168 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:21:18,489 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: defer +2023-02-26 17:21:18,489 INFO SenderThread:148168 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-02-26 17:21:18,489 INFO SenderThread:148168 [sender.py:transition_state():389] send defer: 5 +2023-02-26 17:21:18,490 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:21:18,490 INFO HandlerThread:148168 [handler.py:handle_request_defer():164] handle defer: 5 +2023-02-26 17:21:18,490 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: defer +2023-02-26 17:21:18,490 INFO SenderThread:148168 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-02-26 17:21:18,570 INFO SenderThread:148168 [sender.py:transition_state():389] send defer: 6 +2023-02-26 17:21:18,570 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:21:18,570 INFO HandlerThread:148168 [handler.py:handle_request_defer():164] handle defer: 6 +2023-02-26 17:21:18,570 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: defer +2023-02-26 17:21:18,571 INFO SenderThread:148168 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-02-26 17:21:18,571 INFO SenderThread:148168 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 17:21:18,587 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:21:19,265 INFO SenderThread:148168 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/config.yaml +2023-02-26 17:21:19,265 INFO SenderThread:148168 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files +2023-02-26 17:21:19,267 INFO SenderThread:148168 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/conda-environment.yaml conda-environment.yaml +2023-02-26 17:21:19,267 INFO SenderThread:148168 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-metadata.json wandb-metadata.json +2023-02-26 17:21:19,267 INFO SenderThread:148168 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/requirements.txt requirements.txt +2023-02-26 17:21:19,267 INFO SenderThread:148168 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-summary.json wandb-summary.json +2023-02-26 17:21:19,270 INFO SenderThread:148168 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/output.log output.log +2023-02-26 17:21:19,276 INFO SenderThread:148168 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/config.yaml config.yaml +2023-02-26 17:21:19,278 INFO SenderThread:148168 [sender.py:transition_state():389] send defer: 7 +2023-02-26 17:21:19,278 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:21:19,279 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:21:19,280 INFO HandlerThread:148168 [handler.py:handle_request_defer():164] handle defer: 7 +2023-02-26 17:21:19,282 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: defer +2023-02-26 17:21:19,282 INFO SenderThread:148168 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-02-26 17:21:19,282 INFO SenderThread:148168 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:21:19,381 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:21:19,382 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:21:19,483 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:21:19,483 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:21:19,584 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:21:19,584 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:21:19,612 INFO Thread-12 :148168 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/conda-environment.yaml +2023-02-26 17:21:19,615 INFO Thread-16 :148168 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/config.yaml +2023-02-26 17:21:19,616 INFO Thread-15 :148168 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/output.log +2023-02-26 17:21:19,623 INFO Thread-14 :148168 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/wandb-summary.json +2023-02-26 17:21:19,643 INFO Thread-13 :148168 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/files/requirements.txt +2023-02-26 17:21:19,685 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:21:19,685 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:21:19,786 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:21:19,786 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:21:19,843 INFO Thread-6 :148168 [sender.py:transition_state():389] send defer: 8 +2023-02-26 17:21:19,844 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:21:19,844 INFO HandlerThread:148168 [handler.py:handle_request_defer():164] handle defer: 8 +2023-02-26 17:21:19,844 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: defer +2023-02-26 17:21:19,845 INFO SenderThread:148168 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-02-26 17:21:19,888 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:21:19,991 INFO SenderThread:148168 [sender.py:transition_state():389] send defer: 9 +2023-02-26 17:21:19,992 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:21:19,992 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:21:19,992 INFO HandlerThread:148168 [handler.py:handle_request_defer():164] handle defer: 9 +2023-02-26 17:21:19,992 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: defer +2023-02-26 17:21:19,992 INFO SenderThread:148168 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-02-26 17:21:19,993 INFO SenderThread:148168 [sender.py:transition_state():389] send defer: 10 +2023-02-26 17:21:19,993 DEBUG SenderThread:148168 [sender.py:send():232] send: final +2023-02-26 17:21:19,993 DEBUG SenderThread:148168 [sender.py:send():232] send: footer +2023-02-26 17:21:19,993 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:21:19,993 INFO HandlerThread:148168 [handler.py:handle_request_defer():164] handle defer: 10 +2023-02-26 17:21:19,994 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: defer +2023-02-26 17:21:19,994 INFO SenderThread:148168 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-02-26 17:21:20,093 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:21:20,093 DEBUG SenderThread:148168 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:21:20,093 INFO SenderThread:148168 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:21:20,303 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: sampled_history +2023-02-26 17:21:20,304 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: get_summary +2023-02-26 17:21:20,305 DEBUG HandlerThread:148168 [handler.py:handle_request():141] handle_request: shutdown +2023-02-26 17:21:20,305 INFO HandlerThread:148168 [handler.py:finish():806] shutting down handler +2023-02-26 17:21:21,023 INFO WriterThread:148168 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/run-skuwodjc.wandb +2023-02-26 17:21:21,203 INFO SenderThread:148168 [sender.py:finish():1106] shutting down sender +2023-02-26 17:21:21,203 INFO SenderThread:148168 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:21:21,205 INFO SenderThread:148168 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:21:21,270 INFO MainThread:148168 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_172103-skuwodjc/logs/debug.log b/yolov5_model/wandb/run-20230226_172103-skuwodjc/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..a6da11e44fd342793c0e08a7168e5b7e12802183 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172103-skuwodjc/logs/debug.log @@ -0,0 +1,113 @@ +2023-02-26 17:21:03,655 INFO MainThread:147997 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 17:21:03,656 INFO MainThread:147997 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 17:21:03,656 INFO MainThread:147997 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 17:21:03,656 INFO MainThread:147997 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 17:21:03,656 INFO MainThread:147997 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 17:21:03,656 INFO MainThread:147997 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/logs/debug.log +2023-02-26 17:21:03,656 INFO MainThread:147997 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172103-skuwodjc/logs/debug-internal.log +2023-02-26 17:21:03,656 INFO MainThread:147997 [wandb_init.py:init():471] calling init triggers +2023-02-26 17:21:03,656 INFO MainThread:147997 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': -1, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 30, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp6'} +2023-02-26 17:21:03,656 INFO MainThread:147997 [wandb_init.py:init():524] starting backend +2023-02-26 17:21:03,656 INFO MainThread:147997 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 17:21:03,687 INFO MainThread:147997 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 17:21:03,699 INFO MainThread:147997 [backend.py:ensure_launched():222] started backend process with pid: 148168 +2023-02-26 17:21:03,700 INFO MainThread:147997 [wandb_init.py:init():533] backend started and connected +2023-02-26 17:21:03,707 INFO MainThread:147997 [wandb_init.py:init():597] updated telemetry +2023-02-26 17:21:03,739 INFO MainThread:147997 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 17:21:06,868 INFO MainThread:147997 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 17:21:06,915 INFO MainThread:147997 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 17:21:06,915 INFO MainThread:147997 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 17:21:11,921 INFO MainThread:147997 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 17:21:11,922 INFO MainThread:147997 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 17:21:11,923 INFO MainThread:147997 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 17:21:11,924 INFO MainThread:147997 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 17:21:11,924 INFO MainThread:147997 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 17:21:13,881 INFO MainThread:147997 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 1 +2023-02-26 17:21:13,885 INFO MainThread:147997 [wandb_run.py:_restore():1838] restore +2023-02-26 17:21:18,012 INFO MainThread:147997 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { +} +pusher_stats { +} + +2023-02-26 17:21:18,487 INFO MainThread:147997 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 +} +pusher_stats { + uploaded_bytes: 1072 + total_bytes: 1072 +} + +2023-02-26 17:21:19,279 INFO MainThread:147997 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 5 +} +pusher_stats { + uploaded_bytes: 1072 + total_bytes: 19547 +} + +2023-02-26 17:21:19,382 INFO MainThread:147997 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:21:19,483 INFO MainThread:147997 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:21:19,585 INFO MainThread:147997 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:21:19,685 INFO MainThread:147997 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:21:19,787 INFO MainThread:147997 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:21:19,992 INFO MainThread:147997 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} + +2023-02-26 17:21:20,203 INFO MainThread:147997 [wandb_run.py:_on_finish():1995] got exit ret: done: true +exit_result { +} +file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21939 + total_bytes: 21939 +} +local_info { +} + +2023-02-26 17:21:22,282 INFO MainThread:147997 [wandb_run.py:_footer_history_summary_info():3102] rendering history +2023-02-26 17:21:22,283 INFO MainThread:147997 [wandb_run.py:_footer_history_summary_info():3134] rendering summary +2023-02-26 17:21:22,296 INFO MainThread:147997 [wandb_run.py:_footer_sync_info():3057] logging synced files diff --git a/yolov5_model/wandb/run-20230226_172103-skuwodjc/run-skuwodjc.wandb b/yolov5_model/wandb/run-20230226_172103-skuwodjc/run-skuwodjc.wandb new file mode 100644 index 0000000000000000000000000000000000000000..0e3286c1839e75079b66950fcda54db114748053 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_172103-skuwodjc/run-skuwodjc.wandb differ diff --git a/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files/config.yaml b/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b6021f71fe25a34abc6049c6fa9ecf41772afee3 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files/config.yaml @@ -0,0 +1,170 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677453744 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: -1 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp7 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5s.pt +workers: + desc: null + value: 20 diff --git a/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files/output.log b/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..f7cee09bb66c6dc7a987ba924ab87a5c06d12fd1 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files/output.log @@ -0,0 +1,54 @@ +Downloading https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5s.pt to yolov5s.pt... +100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 14.1M/14.1M [00:00<00:00, 38.3MB/s] +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 3520 models.common.Conv [3, 32, 6, 2, 2] + 1 -1 1 18560 models.common.Conv [32, 64, 3, 2] + 2 -1 1 18816 models.common.C3 [64, 64, 1] + 3 -1 1 73984 models.common.Conv [64, 128, 3, 2] + 4 -1 2 115712 models.common.C3 [128, 128, 2] + 5 -1 1 295424 models.common.Conv [128, 256, 3, 2] + 6 -1 3 625152 models.common.C3 [256, 256, 3] + 7 -1 1 1180672 models.common.Conv [256, 512, 3, 2] + 8 -1 1 1182720 models.common.C3 [512, 512, 1] + 9 -1 1 656896 models.common.SPPF [512, 512, 5] + 10 -1 1 131584 models.common.Conv [512, 256, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 1 361984 models.common.C3 [512, 256, 1, False] + 14 -1 1 33024 models.common.Conv [256, 128, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 1 90880 models.common.C3 [256, 128, 1, False] + 18 -1 1 147712 models.common.Conv [128, 128, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 1 296448 models.common.C3 [256, 256, 1, False] + 21 -1 1 590336 models.common.Conv [256, 256, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 1 1182720 models.common.C3 [512, 512, 1, False] + 24 [17, 20, 23] 1 16182 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [128, 256, 512]] +Model summary: 214 layers, 7022326 parameters, 7022326 gradients, 15.9 GFLOPs +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 125, in train + model = Model(cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 907, in to + return self._apply(convert) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/models/yolo.py", line 155, in _apply + self = super()._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 601, in _apply + param_applied = fn(param) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 905, in convert + return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) +RuntimeError: CUDA error: out of memory +CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. +For debugging consider passing CUDA_LAUNCH_BLOCKING=1. \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files/wandb-summary.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_172224-bz7c0e77/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_172224-bz7c0e77/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..7f574b797493cdc8089e548199c5fe2cc3d173fe --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172224-bz7c0e77/logs/debug-internal.log @@ -0,0 +1,14 @@ +2023-02-26 17:22:34,201 INFO MainThread:154812 [internal.py:wandb_internal():90] W&B internal server running at pid: 154812, started at: 2023-02-26 17:22:34.200027 +2023-02-26 17:22:34,212 INFO WriterThread:154812 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172224-bz7c0e77/run-bz7c0e77.wandb +2023-02-26 17:22:34,222 DEBUG SenderThread:154812 [sender.py:send():232] send: header +2023-02-26 17:22:34,222 DEBUG SenderThread:154812 [sender.py:send():232] send: run +2023-02-26 17:22:34,233 INFO SenderThread:154812 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/bz7c0e77 +2023-02-26 17:22:34,453 DEBUG HandlerThread:154812 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 17:22:34,492 INFO SenderThread:154812 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files +2023-02-26 17:22:34,495 INFO SenderThread:154812 [sender.py:_start_run_threads():811] run started: bz7c0e77 with start time 1677453744 +2023-02-26 17:22:34,495 DEBUG SenderThread:154812 [sender.py:send():232] send: summary +2023-02-26 17:22:34,500 INFO SenderThread:154812 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:22:34,501 DEBUG SenderThread:154812 [sender.py:send_request():246] send_request: check_version +2023-02-26 17:22:34,558 DEBUG HandlerThread:154812 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 17:22:46,423 INFO Thread-7 :154812 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files/wandb-summary.json +2023-02-26 17:22:46,428 INFO Thread-7 :154812 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172224-bz7c0e77/files/output.log diff --git a/yolov5_model/wandb/run-20230226_172224-bz7c0e77/logs/debug.log b/yolov5_model/wandb/run-20230226_172224-bz7c0e77/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..a605fa376005adf3e59b4952d211769a69b5e694 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172224-bz7c0e77/logs/debug.log @@ -0,0 +1,28 @@ +2023-02-26 17:22:24,768 INFO MainThread:152582 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 17:22:24,769 INFO MainThread:152582 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 17:22:24,769 INFO MainThread:152582 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 17:22:24,769 INFO MainThread:152582 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 17:22:24,769 INFO MainThread:152582 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 17:22:24,769 INFO MainThread:152582 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172224-bz7c0e77/logs/debug.log +2023-02-26 17:22:24,769 INFO MainThread:152582 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172224-bz7c0e77/logs/debug-internal.log +2023-02-26 17:22:24,769 INFO MainThread:152582 [wandb_init.py:init():471] calling init triggers +2023-02-26 17:22:24,771 INFO MainThread:152582 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5s.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': -1, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 20, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp7'} +2023-02-26 17:22:24,771 INFO MainThread:152582 [wandb_init.py:init():524] starting backend +2023-02-26 17:22:24,771 INFO MainThread:152582 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 17:22:24,798 INFO MainThread:152582 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 17:22:24,812 INFO MainThread:152582 [backend.py:ensure_launched():222] started backend process with pid: 154812 +2023-02-26 17:22:24,815 INFO MainThread:152582 [wandb_init.py:init():533] backend started and connected +2023-02-26 17:22:24,822 INFO MainThread:152582 [wandb_init.py:init():597] updated telemetry +2023-02-26 17:22:24,912 INFO MainThread:152582 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 17:22:34,450 INFO MainThread:152582 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 17:22:34,556 INFO MainThread:152582 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 17:22:34,556 INFO MainThread:152582 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 17:22:39,619 INFO MainThread:152582 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 17:22:39,629 INFO MainThread:152582 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 17:22:39,631 INFO MainThread:152582 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 17:22:39,636 INFO MainThread:152582 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 17:22:39,636 INFO MainThread:152582 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 17:22:43,867 INFO MainThread:152582 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 1 +2023-02-26 17:22:43,877 INFO MainThread:152582 [wandb_run.py:_restore():1838] restore diff --git a/yolov5_model/wandb/run-20230226_172224-bz7c0e77/run-bz7c0e77.wandb b/yolov5_model/wandb/run-20230226_172224-bz7c0e77/run-bz7c0e77.wandb new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/config.yaml b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2490e108a7c2b66edcfbe0db1414a1bf72e1402b --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/config.yaml @@ -0,0 +1,176 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677453950 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 16 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp8 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 40 diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Labels_0_6a883c7ef52a3db02046.jpg b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Labels_0_6a883c7ef52a3db02046.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2db5f6732508753ea149f2012212db274a84ce3b Binary files /dev/null and b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Labels_0_6a883c7ef52a3db02046.jpg differ diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Labels_0_f68d571fdee6784f3d89.jpg b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Labels_0_f68d571fdee6784f3d89.jpg new file mode 100644 index 0000000000000000000000000000000000000000..03b52f67250d40fb85d95ef59d1d87ab4fc0b87b Binary files /dev/null and b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Labels_0_f68d571fdee6784f3d89.jpg differ diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_151826f941a635cc8383.jpg b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_151826f941a635cc8383.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5b0b269cb7887de5337a9f452b83200ca208d1b2 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_151826f941a635cc8383.jpg differ diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_2159ec3ded661ae299a1.jpg b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_2159ec3ded661ae299a1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b2c258d737943bae2d89d08676505a1be3ca61f9 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_2159ec3ded661ae299a1.jpg differ diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_f2da49c657c1724f1c74.jpg b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_f2da49c657c1724f1c74.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2503e1bdd61de86e84d68ff4e1e839bde3596a3 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_f2da49c657c1724f1c74.jpg differ diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..ec33145660035e69646bceb3a02d233af433611f --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log @@ -0,0 +1,265 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Transferred 475/481 items from yolov5m.pt +[34m[1mAMP: [39m[22mchecks passed ✅ +[34m[1moptimizer:[39m[22m SGD(lr=0.01) with parameter groups 79 weight(decay=0.0), 82 weight(decay=0.0005), 82 bias +WARNING âš ï¸ DP not recommended, use torch.distributed.run for best DDP Multi-GPU results. +See Multi-GPU Tutorial at https://github.com/ultralytics/yolov5/issues/475 to get started. +[34m[1mtrain: [39m[22mScanning /projects/akhot2/group-01-phys371-sp2023/crop/data/train/labels... 1001 images, 181 backgrounds, 0 corrupt: 100%|██████████| 1001/1001 [00:02<00:00, 442.85it/s] +[34m[1mtrain: [39m[22mNew cache created: /projects/akhot2/group-01-phys371-sp2023/crop/data/train/labels.cache +[34m[1mval: [39m[22mScanning /projects/akhot2/group-01-phys371-sp2023/crop/data/test/labels... 249 images, 42 backgrounds, 0 corrupt: 100%|██████████| 249/249 [00:00<00:00, 421.68it/s] +[34m[1mval: [39m[22mNew cache created: /projects/akhot2/group-01-phys371-sp2023/crop/data/test/labels.cache +[34m[1mAutoAnchor: [39m[22m5.97 anchors/target, 1.000 Best Possible Recall (BPR). Current anchors are a good fit to dataset ✅ +Plotting labels to runs/train/exp8/labels.jpg... +Image sizes 1280 train, 1280 val +Using 16 dataloader workers +Logging results to [1mruns/train/exp8 +Starting training for 30 epochs... + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + 0/29 13G 0.1003 0.05462 0 39 1280: 100%|██████████| 63/63 [01:25<00:00, 1.35s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.32it/s] + all 249 546 0.107 0.516 0.0915 0.0228 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + 1/29 16G 0.08137 0.03022 0 27 1280: 100%|██████████| 63/63 [01:21<00:00, 1.29s/it] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.56it/s] + all 249 546 0.0788 0.427 0.0727 0.0202 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + 2/29 16G 0.07807 0.02594 0 39 1280: 100%|██████████| 63/63 [01:06<00:00, 1.05s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:04<00:00, 1.72it/s] + all 249 546 0.178 0.619 0.172 0.0593 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + 3/29 16G 0.06989 0.02582 0 57 1280: 100%|██████████| 63/63 [01:16<00:00, 1.21s/it] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 2.78it/s] + all 249 546 0.162 0.748 0.161 0.0538 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + + 4/29 16G 0.06044 0.02575 0 47 1280: 100%|██████████| 63/63 [01:07<00:00, 1.07s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 2.67it/s] + all 249 546 0.483 0.595 0.508 0.134 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + 5/29 16G 0.05542 0.02455 0 31 1280: 100%|██████████| 63/63 [00:57<00:00, 1.09it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.25it/s] + all 249 546 0.343 0.797 0.345 0.099 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + 6/29 16G 0.05063 0.02355 0 43 1280: 100%|██████████| 63/63 [00:56<00:00, 1.11it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.34it/s] + all 249 546 0.514 0.974 0.672 0.303 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + 7/29 16G 0.04899 0.02446 0 63 1280: 62%|██████■| 39/63 [02:07<01:18, 3.28s/it] +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 322, in train + scaler.unscale_(optimizer) # unscale gradients + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/cuda/amp/grad_scaler.py", line 279, in unscale_ + optimizer_state["found_inf_per_device"] = self._unscale_grads_(optimizer, inv_scale, found_inf, False) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/cuda/amp/grad_scaler.py", line 225, in _unscale_grads_ + per_device_found_inf.get(device), + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/cuda/amp/grad_scaler.py", line 21, in get + retval = self.master.to(device=device, non_blocking=True, copy=True) +KeyboardInterrupt \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/requirements.txt b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..af971b80a49543a4918afc7fd0b95191e4723586 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-metadata.json @@ -0,0 +1,37 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-26T23:26:01.970015", + "startedAt": "2023-02-26T23:25:50.126889", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 2, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "16", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt", + "--workers", + "40" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..c3cfeaa7ed8de91ef4a8233c9abfa34a8d87bd2f --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json @@ -0,0 +1 @@ +{"best/epoch": 6, "best/precision": 0.513605392832446, "best/recall": 0.9743589743589743, "best/mAP_0.5": 0.6716788980819899, "best/mAP_0.5:0.95": 0.3028065648817038, "Labels": {"_type": "images/separated", "width": 1600, "height": 1600, "format": "jpg", "count": 2, "filenames": ["media/images/Labels_0_6a883c7ef52a3db02046.jpg", "media/images/Labels_0_f68d571fdee6784f3d89.jpg"], "captions": ["labels.jpg", "labels_correlogram.jpg"]}, "Mosaics": {"_type": "images/separated", "width": 1920, "height": 1920, "format": "jpg", "count": 3, "filenames": ["media/images/Mosaics_0_151826f941a635cc8383.jpg", "media/images/Mosaics_0_2159ec3ded661ae299a1.jpg", "media/images/Mosaics_0_f2da49c657c1724f1c74.jpg"], "captions": ["train_batch0.jpg", "train_batch1.jpg", "train_batch2.jpg"]}, "train/box_loss": 0.0506318062543869, "train/obj_loss": 0.023546969518065453, "train/cls_loss": 0.0, "metrics/precision": 0.513605392832446, "metrics/recall": 0.9743589743589743, "metrics/mAP_0.5": 0.6716788980819899, "metrics/mAP_0.5:0.95": 0.3028065648817038, "val/box_loss": 0.048884935677051544, "val/obj_loss": 0.02090930938720703, "val/cls_loss": 0.0, "x/lr0": 0.008350000000000002, "x/lr1": 0.008350000000000002, "x/lr2": 0.008350000000000002, "_timestamp": 1677454502, "_runtime": 552, "_step": 6, "_wandb": {"runtime": 680}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..f7777c0b374e4675bfc2349a8f9be9b0cbbaf8fe --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/logs/debug-internal.log @@ -0,0 +1,556 @@ +2023-02-26 17:25:52,887 INFO MainThread:168352 [internal.py:wandb_internal():90] W&B internal server running at pid: 168352, started at: 2023-02-26 17:25:52.886244 +2023-02-26 17:25:52,889 INFO WriterThread:168352 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/run-2fvf94yn.wandb +2023-02-26 17:25:52,891 DEBUG SenderThread:168352 [sender.py:send():232] send: header +2023-02-26 17:25:52,891 DEBUG SenderThread:168352 [sender.py:send():232] send: run +2023-02-26 17:25:52,900 INFO SenderThread:168352 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/2fvf94yn +2023-02-26 17:25:53,152 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 17:25:53,158 INFO SenderThread:168352 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files +2023-02-26 17:25:53,158 INFO SenderThread:168352 [sender.py:_start_run_threads():811] run started: 2fvf94yn with start time 1677453950 +2023-02-26 17:25:53,159 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:25:53,160 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:25:53,160 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: check_version +2023-02-26 17:25:53,218 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 17:25:57,073 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json +2023-02-26 17:25:59,071 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:26:01,072 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:26:01,969 DEBUG HandlerThread:168352 [meta.py:__init__():35] meta init +2023-02-26 17:26:01,969 DEBUG HandlerThread:168352 [meta.py:__init__():49] meta init done +2023-02-26 17:26:01,969 DEBUG HandlerThread:168352 [meta.py:probe():209] probe +2023-02-26 17:26:01,978 DEBUG HandlerThread:168352 [meta.py:_setup_git():199] setup git +2023-02-26 17:26:02,017 DEBUG HandlerThread:168352 [meta.py:_setup_git():206] setup git done +2023-02-26 17:26:02,017 DEBUG HandlerThread:168352 [meta.py:_save_pip():53] save pip +2023-02-26 17:26:02,019 DEBUG HandlerThread:168352 [meta.py:_save_pip():67] save pip done +2023-02-26 17:26:02,019 DEBUG HandlerThread:168352 [meta.py:_save_conda():74] save conda +2023-02-26 17:26:02,074 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/conda-environment.yaml +2023-02-26 17:26:02,074 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/requirements.txt +2023-02-26 17:26:07,594 DEBUG HandlerThread:168352 [meta.py:_save_conda():84] save conda done +2023-02-26 17:26:07,596 DEBUG HandlerThread:168352 [meta.py:probe():247] probe done +2023-02-26 17:26:07,629 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:26:07,632 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:26:07,723 DEBUG SenderThread:168352 [sender.py:send():232] send: telemetry +2023-02-26 17:26:07,723 DEBUG SenderThread:168352 [sender.py:send():232] send: files +2023-02-26 17:26:07,725 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-02-26 17:26:08,093 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/conda-environment.yaml +2023-02-26 17:26:08,093 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-metadata.json +2023-02-26 17:26:08,104 INFO Thread-11 :168352 [upload_job.py:push():137] Uploaded file /tmp/tmpjhsv3pxmwandb/3jyml7cu-wandb-metadata.json +2023-02-26 17:26:09,094 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:26:13,097 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:26:15,118 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:26:17,120 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:26:18,250 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:26:18,250 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:26:19,123 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:26:21,129 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:26:24,138 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/config.yaml +2023-02-26 17:26:25,142 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:26:32,753 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:26:33,316 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:26:33,317 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:26:48,368 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:26:48,379 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:26:52,795 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:26:58,861 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:00,845 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:02,846 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:03,814 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:27:03,815 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:27:04,850 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:06,240 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:27:06,852 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:08,862 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:10,864 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:13,005 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:15,107 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:17,106 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:18,885 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:27:18,889 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:27:19,289 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:21,303 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:23,307 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:25,339 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:27,493 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:31,624 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:33,958 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:27:33,960 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:27:37,785 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:39,899 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:41,262 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:27:44,010 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:46,099 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:48,144 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:49,033 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:27:49,033 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:27:50,148 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:51,525 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:27:51,562 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:27:51,563 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:27:51,564 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:27:51,564 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:27:51,567 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:27:51,567 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:27:51,567 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:27:51,568 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:27:51,568 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:27:51,719 DEBUG SenderThread:168352 [sender.py:send():232] send: files +2023-02-26 17:27:51,720 INFO SenderThread:168352 [sender.py:_save_file():946] saving file media/images/Labels_0_6a883c7ef52a3db02046.jpg with policy now +2023-02-26 17:27:51,727 DEBUG SenderThread:168352 [sender.py:send():232] send: files +2023-02-26 17:27:51,727 INFO SenderThread:168352 [sender.py:_save_file():946] saving file media/images/Labels_0_f68d571fdee6784f3d89.jpg with policy now +2023-02-26 17:27:51,895 DEBUG SenderThread:168352 [sender.py:send():232] send: files +2023-02-26 17:27:51,896 INFO SenderThread:168352 [sender.py:_save_file():946] saving file media/images/Mosaics_0_151826f941a635cc8383.jpg with policy now +2023-02-26 17:27:51,904 DEBUG SenderThread:168352 [sender.py:send():232] send: files +2023-02-26 17:27:51,904 INFO SenderThread:168352 [sender.py:_save_file():946] saving file media/images/Mosaics_0_2159ec3ded661ae299a1.jpg with policy now +2023-02-26 17:27:51,926 DEBUG SenderThread:168352 [sender.py:send():232] send: files +2023-02-26 17:27:51,926 INFO SenderThread:168352 [sender.py:_save_file():946] saving file media/images/Mosaics_0_f2da49c657c1724f1c74.jpg with policy now +2023-02-26 17:27:52,071 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 17:27:52,074 DEBUG SenderThread:168352 [sender.py:send():232] send: history +2023-02-26 17:27:52,074 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:27:52,076 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:27:52,081 INFO Thread-13 :168352 [upload_job.py:push():137] Uploaded file /tmp/tmpjhsv3pxmwandb/a94ghydm-media/images/Labels_0_f68d571fdee6784f3d89.jpg +2023-02-26 17:27:52,158 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:52,159 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json +2023-02-26 17:27:52,159 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_151826f941a635cc8383.jpg +2023-02-26 17:27:52,160 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_2159ec3ded661ae299a1.jpg +2023-02-26 17:27:52,160 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_f2da49c657c1724f1c74.jpg +2023-02-26 17:27:52,160 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Labels_0_f68d571fdee6784f3d89.jpg +2023-02-26 17:27:52,160 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Labels_0_6a883c7ef52a3db02046.jpg +2023-02-26 17:27:52,160 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media +2023-02-26 17:27:52,160 INFO Thread-7 :168352 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images +2023-02-26 17:27:52,172 INFO Thread-12 :168352 [upload_job.py:push():137] Uploaded file /tmp/tmpjhsv3pxmwandb/1cs9ulld-media/images/Labels_0_6a883c7ef52a3db02046.jpg +2023-02-26 17:27:52,236 INFO Thread-14 :168352 [upload_job.py:push():137] Uploaded file /tmp/tmpjhsv3pxmwandb/xrz5vxeg-media/images/Mosaics_0_151826f941a635cc8383.jpg +2023-02-26 17:27:52,292 INFO Thread-16 :168352 [upload_job.py:push():137] Uploaded file /tmp/tmpjhsv3pxmwandb/3kcnm1ky-media/images/Mosaics_0_f2da49c657c1724f1c74.jpg +2023-02-26 17:27:52,362 INFO Thread-15 :168352 [upload_job.py:push():137] Uploaded file /tmp/tmpjhsv3pxmwandb/1w8vm3ci-media/images/Mosaics_0_2159ec3ded661ae299a1.jpg +2023-02-26 17:27:54,164 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:27:58,333 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:00,478 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:02,690 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:04,187 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:28:04,188 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:28:04,546 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:06,558 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:08,564 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:14,787 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:15,183 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:28:16,909 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:19,283 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:28:19,286 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:28:21,024 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:23,038 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:27,114 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:33,342 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:34,606 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:28:34,610 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:28:39,438 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:41,547 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:44,573 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:46,593 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:49,176 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:28:49,721 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:28:49,723 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:28:54,833 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:56,925 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:28:58,981 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:03,171 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:04,847 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:29:04,848 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:29:09,520 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:13,588 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:15,593 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:17,676 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:18,023 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 17:29:18,025 DEBUG SenderThread:168352 [sender.py:send():232] send: history +2023-02-26 17:29:18,026 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:29:18,029 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:29:18,679 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json +2023-02-26 17:29:19,682 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:19,968 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:29:19,969 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:29:21,771 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:22,751 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:29:25,843 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:28,046 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:30,269 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:32,290 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:34,601 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:35,028 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:29:35,030 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:29:38,794 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:41,864 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:46,078 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:48,084 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:50,088 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:50,201 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:29:50,201 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:29:52,092 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:54,102 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:56,119 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:29:57,262 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:29:58,221 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:00,288 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:02,403 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:04,411 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:05,346 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:30:05,354 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:30:08,482 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:10,794 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:12,799 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:20,482 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:30:20,486 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:30:20,899 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:25,007 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:27,082 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:29,085 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:30,103 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:30:30,145 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 17:30:30,147 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:30:30,148 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:30:30,149 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json +2023-02-26 17:30:30,150 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:30:30,150 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:30:30,151 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:30:30,151 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:30:30,152 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:30:30,152 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:30:30,153 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:30:30,153 DEBUG SenderThread:168352 [sender.py:send():232] send: history +2023-02-26 17:30:30,153 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:30:30,155 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:30:31,152 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:31,266 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:30:33,276 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:36,147 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:30:36,148 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:30:37,347 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:39,590 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:41,688 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:43,717 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:45,722 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:47,840 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:49,936 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:51,234 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:30:51,235 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:30:51,944 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:30:58,095 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:00,125 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:04,592 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:05,022 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:31:06,370 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:31:06,373 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:31:10,886 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:14,013 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:18,261 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:20,267 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:21,600 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:31:21,602 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:31:24,650 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:28,719 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:30,781 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:32,758 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:34,796 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:36,907 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:31:36,909 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:31:38,902 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:39,691 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:31:43,080 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:45,145 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:47,296 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:48,353 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:50,366 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:50,819 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 17:31:50,821 DEBUG SenderThread:168352 [sender.py:send():232] send: history +2023-02-26 17:31:50,821 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:31:50,823 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:31:51,457 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json +2023-02-26 17:31:52,224 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:31:52,227 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:31:52,460 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:54,465 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:56,624 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:31:58,708 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:02,779 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:04,864 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:06,921 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:07,342 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:32:07,343 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:32:09,038 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:11,120 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:13,189 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:13,412 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:32:15,198 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:17,201 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:19,318 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:21,486 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:22,641 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:32:22,642 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:32:23,494 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:25,513 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:27,527 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:29,538 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:35,677 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:37,727 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:37,900 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:32:37,901 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:32:39,711 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:41,718 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:43,791 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:45,806 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:47,458 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:32:47,838 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:53,053 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:32:53,055 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:32:53,915 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:55,957 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:32:59,971 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:01,883 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:33:01,885 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 17:33:01,887 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:33:01,887 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:33:01,889 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:33:01,889 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:33:01,890 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:33:01,890 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:33:01,891 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:33:01,891 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:33:01,892 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:33:01,892 DEBUG SenderThread:168352 [sender.py:send():232] send: history +2023-02-26 17:33:01,892 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:33:01,893 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:33:02,042 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:02,043 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json +2023-02-26 17:33:04,133 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:06,146 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:08,160 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:08,237 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:33:08,237 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:33:10,168 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:12,198 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:14,214 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:18,234 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:20,238 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:20,432 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:33:22,243 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:23,335 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:33:23,336 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:33:28,257 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:30,273 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:32,277 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:34,280 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:36,284 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:38,288 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:38,480 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:33:38,481 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:33:44,345 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:46,350 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:48,358 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:50,361 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:33:52,456 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:33:53,558 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:33:53,558 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:33:54,368 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:00,376 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:02,379 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:03,018 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 17:34:03,020 DEBUG SenderThread:168352 [sender.py:send():232] send: history +2023-02-26 17:34:03,020 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:34:03,022 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:34:03,381 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json +2023-02-26 17:34:04,383 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:06,386 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:08,389 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:08,632 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:34:08,633 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:34:10,392 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:14,398 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:16,401 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:18,404 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:22,410 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:23,692 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:34:23,693 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:34:24,413 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:24,480 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:34:30,422 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:32,425 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:34,428 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:38,438 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:38,770 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:34:38,770 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:34:40,441 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:44,450 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:46,453 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:48,456 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:52,462 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:53,819 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:34:53,819 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:34:54,465 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:34:56,446 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:35:00,474 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:02,065 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:35:02,067 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 17:35:02,068 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:35:02,068 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:35:02,069 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:35:02,070 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:35:02,070 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:35:02,070 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:35:02,071 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:35:02,071 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:35:02,072 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:35:02,072 DEBUG SenderThread:168352 [sender.py:send():232] send: history +2023-02-26 17:35:02,073 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:35:02,073 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:35:02,478 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:02,479 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json +2023-02-26 17:35:04,483 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:08,489 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:08,882 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:35:08,882 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:35:10,493 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:14,500 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:16,659 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:18,684 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:23,980 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:35:23,982 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:35:24,738 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:27,079 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:29,264 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:35:39,217 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:35:39,249 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:35:41,604 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:43,660 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:50,189 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:35:54,997 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:35:55,001 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:36:10,580 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:36:10,586 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:36:11,895 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:36:17,843 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:36:26,584 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:36:26,615 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:36:30,985 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:36:41,913 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:36:41,918 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:36:42,914 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:36:47,257 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:36:49,640 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:36:54,810 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:36:57,358 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:36:57,359 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:36:58,117 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:37:00,112 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:37:08,108 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:37:10,857 WARNING MainThread:168352 [internal.py:wandb_internal():153] Internal process interrupt: 1 +2023-02-26 17:37:11,197 DEBUG SenderThread:168352 [sender.py:send():232] send: telemetry +2023-02-26 17:37:12,547 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:37:13,805 DEBUG SenderThread:168352 [sender.py:send():232] send: exit +2023-02-26 17:37:13,806 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:37:13,806 INFO SenderThread:168352 [sender.py:send_exit():368] handling exit code: 255 +2023-02-26 17:37:13,807 INFO SenderThread:168352 [sender.py:send_exit():370] handling runtime: 680 +2023-02-26 17:37:13,821 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:37:13,824 INFO SenderThread:168352 [sender.py:send_exit():376] send defer +2023-02-26 17:37:13,824 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:37:13,824 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:37:13,825 INFO HandlerThread:168352 [handler.py:handle_request_defer():164] handle defer: 0 +2023-02-26 17:37:13,825 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: defer +2023-02-26 17:37:13,825 INFO SenderThread:168352 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-02-26 17:37:13,825 INFO SenderThread:168352 [sender.py:transition_state():389] send defer: 1 +2023-02-26 17:37:13,825 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:37:13,825 INFO HandlerThread:168352 [handler.py:handle_request_defer():164] handle defer: 1 +2023-02-26 17:37:14,434 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:37:14,435 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: defer +2023-02-26 17:37:14,438 INFO SenderThread:168352 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-02-26 17:37:14,438 INFO SenderThread:168352 [sender.py:transition_state():389] send defer: 2 +2023-02-26 17:37:14,438 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:37:14,438 DEBUG SenderThread:168352 [sender.py:send():232] send: stats +2023-02-26 17:37:14,439 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:37:14,439 INFO HandlerThread:168352 [handler.py:handle_request_defer():164] handle defer: 2 +2023-02-26 17:37:14,439 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: defer +2023-02-26 17:37:14,439 INFO SenderThread:168352 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-02-26 17:37:14,439 INFO SenderThread:168352 [sender.py:transition_state():389] send defer: 3 +2023-02-26 17:37:14,439 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:37:14,439 INFO HandlerThread:168352 [handler.py:handle_request_defer():164] handle defer: 3 +2023-02-26 17:37:14,440 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: defer +2023-02-26 17:37:14,440 INFO SenderThread:168352 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-02-26 17:37:14,440 INFO SenderThread:168352 [sender.py:transition_state():389] send defer: 4 +2023-02-26 17:37:14,440 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:37:14,440 INFO HandlerThread:168352 [handler.py:handle_request_defer():164] handle defer: 4 +2023-02-26 17:37:14,440 DEBUG SenderThread:168352 [sender.py:send():232] send: summary +2023-02-26 17:37:14,442 INFO SenderThread:168352 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:37:14,442 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: defer +2023-02-26 17:37:14,442 INFO SenderThread:168352 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-02-26 17:37:14,442 INFO SenderThread:168352 [sender.py:transition_state():389] send defer: 5 +2023-02-26 17:37:14,443 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:37:14,443 INFO HandlerThread:168352 [handler.py:handle_request_defer():164] handle defer: 5 +2023-02-26 17:37:14,443 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: defer +2023-02-26 17:37:14,443 INFO SenderThread:168352 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-02-26 17:37:14,605 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:37:14,622 INFO SenderThread:168352 [sender.py:transition_state():389] send defer: 6 +2023-02-26 17:37:14,622 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:37:14,622 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:37:14,622 INFO HandlerThread:168352 [handler.py:handle_request_defer():164] handle defer: 6 +2023-02-26 17:37:14,622 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: defer +2023-02-26 17:37:14,623 INFO SenderThread:168352 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-02-26 17:37:14,623 INFO SenderThread:168352 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 17:37:14,640 INFO Thread-7 :168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:37:14,643 INFO SenderThread:168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/config.yaml +2023-02-26 17:37:14,643 INFO SenderThread:168352 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json +2023-02-26 17:37:14,643 INFO SenderThread:168352 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files +2023-02-26 17:37:14,644 INFO SenderThread:168352 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/requirements.txt requirements.txt +2023-02-26 17:37:14,644 INFO SenderThread:168352 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log output.log +2023-02-26 17:37:14,645 INFO SenderThread:168352 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/conda-environment.yaml conda-environment.yaml +2023-02-26 17:37:14,650 INFO SenderThread:168352 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/config.yaml config.yaml +2023-02-26 17:37:14,652 INFO SenderThread:168352 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-metadata.json wandb-metadata.json +2023-02-26 17:37:14,653 INFO SenderThread:168352 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json wandb-summary.json +2023-02-26 17:37:14,658 INFO SenderThread:168352 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Labels_0_6a883c7ef52a3db02046.jpg media/images/Labels_0_6a883c7ef52a3db02046.jpg +2023-02-26 17:37:14,658 INFO SenderThread:168352 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_2159ec3ded661ae299a1.jpg media/images/Mosaics_0_2159ec3ded661ae299a1.jpg +2023-02-26 17:37:14,659 INFO SenderThread:168352 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_151826f941a635cc8383.jpg media/images/Mosaics_0_151826f941a635cc8383.jpg +2023-02-26 17:37:14,659 INFO SenderThread:168352 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Labels_0_f68d571fdee6784f3d89.jpg media/images/Labels_0_f68d571fdee6784f3d89.jpg +2023-02-26 17:37:14,659 INFO SenderThread:168352 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/media/images/Mosaics_0_f2da49c657c1724f1c74.jpg media/images/Mosaics_0_f2da49c657c1724f1c74.jpg +2023-02-26 17:37:14,660 INFO SenderThread:168352 [sender.py:transition_state():389] send defer: 7 +2023-02-26 17:37:14,660 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:37:14,660 INFO HandlerThread:168352 [handler.py:handle_request_defer():164] handle defer: 7 +2023-02-26 17:37:14,660 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: defer +2023-02-26 17:37:14,660 INFO SenderThread:168352 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-02-26 17:37:14,660 INFO SenderThread:168352 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:37:14,732 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:37:14,733 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:37:14,835 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:37:14,835 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:37:15,183 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:37:15,217 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:37:15,218 INFO Thread-18 :168352 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/output.log +2023-02-26 17:37:15,218 INFO Thread-21 :168352 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/wandb-summary.json +2023-02-26 17:37:15,259 INFO Thread-17 :168352 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/requirements.txt +2023-02-26 17:37:15,290 INFO Thread-19 :168352 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/conda-environment.yaml +2023-02-26 17:37:15,293 INFO Thread-20 :168352 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/files/config.yaml +2023-02-26 17:37:15,428 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:37:15,429 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:37:15,494 INFO Thread-6 :168352 [sender.py:transition_state():389] send defer: 8 +2023-02-26 17:37:15,494 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:37:15,494 INFO HandlerThread:168352 [handler.py:handle_request_defer():164] handle defer: 8 +2023-02-26 17:37:15,494 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: defer +2023-02-26 17:37:15,494 INFO SenderThread:168352 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-02-26 17:37:15,531 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:37:15,996 INFO SenderThread:168352 [sender.py:transition_state():389] send defer: 9 +2023-02-26 17:37:15,996 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:37:15,997 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:37:15,997 INFO HandlerThread:168352 [handler.py:handle_request_defer():164] handle defer: 9 +2023-02-26 17:37:15,997 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: defer +2023-02-26 17:37:15,997 INFO SenderThread:168352 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-02-26 17:37:15,997 INFO SenderThread:168352 [sender.py:transition_state():389] send defer: 10 +2023-02-26 17:37:15,998 DEBUG SenderThread:168352 [sender.py:send():232] send: final +2023-02-26 17:37:16,154 DEBUG SenderThread:168352 [sender.py:send():232] send: footer +2023-02-26 17:37:16,155 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:37:16,155 INFO HandlerThread:168352 [handler.py:handle_request_defer():164] handle defer: 10 +2023-02-26 17:37:16,155 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: defer +2023-02-26 17:37:16,155 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:37:16,155 INFO SenderThread:168352 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-02-26 17:37:16,156 DEBUG SenderThread:168352 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:37:16,156 INFO SenderThread:168352 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:37:16,412 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: sampled_history +2023-02-26 17:37:16,420 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: get_summary +2023-02-26 17:37:16,420 DEBUG HandlerThread:168352 [handler.py:handle_request():141] handle_request: shutdown +2023-02-26 17:37:16,420 INFO HandlerThread:168352 [handler.py:finish():806] shutting down handler +2023-02-26 17:37:17,155 INFO WriterThread:168352 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/run-2fvf94yn.wandb +2023-02-26 17:37:17,277 INFO SenderThread:168352 [sender.py:finish():1106] shutting down sender +2023-02-26 17:37:17,277 INFO SenderThread:168352 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:37:17,278 INFO SenderThread:168352 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:37:17,316 INFO MainThread:168352 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/logs/debug.log b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..fc59b153df4715df3c224016dbef72b712896073 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/logs/debug.log @@ -0,0 +1,117 @@ +2023-02-26 17:25:50,142 INFO MainThread:166184 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 17:25:50,142 INFO MainThread:166184 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 17:25:50,142 INFO MainThread:166184 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 17:25:50,142 INFO MainThread:166184 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 17:25:50,142 INFO MainThread:166184 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 17:25:50,143 INFO MainThread:166184 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/logs/debug.log +2023-02-26 17:25:50,143 INFO MainThread:166184 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_172550-2fvf94yn/logs/debug-internal.log +2023-02-26 17:25:50,143 INFO MainThread:166184 [wandb_init.py:init():471] calling init triggers +2023-02-26 17:25:50,143 INFO MainThread:166184 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': 16, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 40, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp8'} +2023-02-26 17:25:50,143 INFO MainThread:166184 [wandb_init.py:init():524] starting backend +2023-02-26 17:25:50,143 INFO MainThread:166184 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 17:25:50,159 INFO MainThread:166184 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 17:25:50,169 INFO MainThread:166184 [backend.py:ensure_launched():222] started backend process with pid: 168352 +2023-02-26 17:25:50,171 INFO MainThread:166184 [wandb_init.py:init():533] backend started and connected +2023-02-26 17:25:50,177 INFO MainThread:166184 [wandb_init.py:init():597] updated telemetry +2023-02-26 17:25:50,212 INFO MainThread:166184 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 17:25:53,151 INFO MainThread:166184 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 17:25:53,217 INFO MainThread:166184 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 17:25:53,217 INFO MainThread:166184 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 17:25:58,231 INFO MainThread:166184 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 17:25:58,232 INFO MainThread:166184 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 17:25:58,232 INFO MainThread:166184 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 17:25:58,235 INFO MainThread:166184 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 17:25:58,236 INFO MainThread:166184 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 17:37:10,917 INFO MainThread:166184 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 255 +2023-02-26 17:37:11,189 INFO MainThread:166184 [wandb_run.py:_restore():1838] restore +2023-02-26 17:37:13,825 INFO MainThread:166184 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 5 +} +pusher_stats { + uploaded_bytes: 1614596 + total_bytes: 1614596 +} + +2023-02-26 17:37:14,439 INFO MainThread:166184 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 5 +} +pusher_stats { + uploaded_bytes: 1614596 + total_bytes: 1614596 +} + +2023-02-26 17:37:14,630 INFO MainThread:166184 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 5 +} +pusher_stats { + uploaded_bytes: 1614596 + total_bytes: 1614596 +} + +2023-02-26 17:37:14,733 INFO MainThread:166184 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 5 +} +pusher_stats { + uploaded_bytes: 1614596 + total_bytes: 1641049 +} + +2023-02-26 17:37:14,836 INFO MainThread:166184 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 5 +} +pusher_stats { + uploaded_bytes: 1632387 + total_bytes: 1641049 +} + +2023-02-26 17:37:15,217 INFO MainThread:166184 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 5 +} +pusher_stats { + uploaded_bytes: 1641049 + total_bytes: 1641049 +} + +2023-02-26 17:37:15,431 INFO MainThread:166184 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 5 +} +pusher_stats { + uploaded_bytes: 1641049 + total_bytes: 1641049 +} + +2023-02-26 17:37:15,997 INFO MainThread:166184 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 5 +} +pusher_stats { + uploaded_bytes: 1641049 + total_bytes: 1641049 +} + +2023-02-26 17:37:16,278 INFO MainThread:166184 [wandb_run.py:_on_finish():1995] got exit ret: done: true +exit_result { +} +file_counts { + wandb_count: 6 + media_count: 5 +} +pusher_stats { + uploaded_bytes: 1641049 + total_bytes: 1641049 +} +local_info { +} + +2023-02-26 17:37:21,176 INFO MainThread:166184 [wandb_run.py:_footer_history_summary_info():3102] rendering history +2023-02-26 17:37:21,219 INFO MainThread:166184 [wandb_run.py:_footer_history_summary_info():3134] rendering summary +2023-02-26 17:37:21,251 INFO MainThread:166184 [wandb_run.py:_footer_sync_info():3057] logging synced files diff --git a/yolov5_model/wandb/run-20230226_172550-2fvf94yn/run-2fvf94yn.wandb b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/run-2fvf94yn.wandb new file mode 100644 index 0000000000000000000000000000000000000000..1c60a3aac39d3b02ceed7ac5990e2daef7795e6d Binary files /dev/null and b/yolov5_model/wandb/run-20230226_172550-2fvf94yn/run-2fvf94yn.wandb differ diff --git a/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/config.yaml b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e4b1604861e2acbd5561700bd6116a543e0fdaed --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/config.yaml @@ -0,0 +1,170 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677455186 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 16 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp9 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 40 diff --git a/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/output.log b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..b4e8e32f0665ab911a5e09eaf85780e153f5183a --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/output.log @@ -0,0 +1,52 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 125, in train + model = Model(cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 907, in to + return self._apply(convert) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/models/yolo.py", line 155, in _apply + self = super()._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 601, in _apply + param_applied = fn(param) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 905, in convert + return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) +RuntimeError: CUDA error: out of memory +CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. +For debugging consider passing CUDA_LAUNCH_BLOCKING=1. \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/requirements.txt b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..db099e4f55b386407a370b8a851ae5f49022f0c4 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/wandb-metadata.json @@ -0,0 +1,37 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-26T23:47:11.221412", + "startedAt": "2023-02-26T23:46:25.832396", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 8, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "16", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt", + "--workers", + "40" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/wandb-summary.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..8922dd7a127f7a5843e59c8294badcf4ec6206c0 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/logs/debug-internal.log @@ -0,0 +1,46 @@ +2023-02-26 17:46:31,971 INFO MainThread:249745 [internal.py:wandb_internal():90] W&B internal server running at pid: 249745, started at: 2023-02-26 17:46:31.970550 +2023-02-26 17:46:31,976 INFO WriterThread:249745 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/run-2vk3tzl3.wandb +2023-02-26 17:46:31,980 DEBUG SenderThread:249745 [sender.py:send():232] send: header +2023-02-26 17:46:31,980 DEBUG SenderThread:249745 [sender.py:send():232] send: run +2023-02-26 17:46:31,991 INFO SenderThread:249745 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/2vk3tzl3 +2023-02-26 17:46:32,264 DEBUG HandlerThread:249745 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 17:46:32,319 INFO SenderThread:249745 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files +2023-02-26 17:46:32,319 INFO SenderThread:249745 [sender.py:_start_run_threads():811] run started: 2vk3tzl3 with start time 1677455186 +2023-02-26 17:46:32,320 DEBUG SenderThread:249745 [sender.py:send():232] send: summary +2023-02-26 17:46:32,321 INFO SenderThread:249745 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:46:32,322 DEBUG SenderThread:249745 [sender.py:send_request():246] send_request: check_version +2023-02-26 17:46:32,381 DEBUG HandlerThread:249745 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 17:47:01,991 INFO Thread-7 :249745 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/wandb-summary.json +2023-02-26 17:47:01,996 INFO Thread-7 :249745 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/output.log +2023-02-26 17:47:08,473 WARNING MainThread:249745 [internal.py:wandb_internal():153] Internal process interrupt: 1 +2023-02-26 17:47:10,550 WARNING MainThread:249745 [internal.py:is_dead():387] Internal process exiting, parent pid 247391 disappeared +2023-02-26 17:47:10,552 ERROR MainThread:249745 [internal.py:wandb_internal():149] Internal process shutdown. +2023-02-26 17:47:11,094 INFO WriterThread:249745 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/run-2vk3tzl3.wandb +2023-02-26 17:47:11,101 INFO SenderThread:249745 [sender.py:finish():1106] shutting down sender +2023-02-26 17:47:11,102 INFO SenderThread:249745 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 17:47:11,220 DEBUG HandlerThread:249745 [meta.py:__init__():35] meta init +2023-02-26 17:47:11,221 DEBUG HandlerThread:249745 [meta.py:__init__():49] meta init done +2023-02-26 17:47:11,221 DEBUG HandlerThread:249745 [meta.py:probe():209] probe +2023-02-26 17:47:11,239 DEBUG HandlerThread:249745 [meta.py:_setup_git():199] setup git +2023-02-26 17:47:11,293 DEBUG HandlerThread:249745 [meta.py:_setup_git():206] setup git done +2023-02-26 17:47:11,293 DEBUG HandlerThread:249745 [meta.py:_save_pip():53] save pip +2023-02-26 17:47:11,296 DEBUG HandlerThread:249745 [meta.py:_save_pip():67] save pip done +2023-02-26 17:47:11,296 DEBUG HandlerThread:249745 [meta.py:_save_conda():74] save conda +2023-02-26 17:47:11,556 INFO Thread-7 :249745 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/requirements.txt +2023-02-26 17:47:11,566 INFO SenderThread:249745 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/conda-environment.yaml +2023-02-26 17:47:11,568 INFO SenderThread:249745 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files +2023-02-26 17:47:11,568 INFO SenderThread:249745 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/output.log output.log +2023-02-26 17:47:11,569 INFO SenderThread:249745 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/requirements.txt requirements.txt +2023-02-26 17:47:11,569 INFO SenderThread:249745 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/config.yaml config.yaml +2023-02-26 17:47:11,587 INFO SenderThread:249745 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/conda-environment.yaml conda-environment.yaml +2023-02-26 17:47:11,591 INFO SenderThread:249745 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/wandb-summary.json wandb-summary.json +2023-02-26 17:47:11,592 INFO SenderThread:249745 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:47:11,593 INFO SenderThread:249745 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:47:12,031 INFO Thread-11 :249745 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/output.log +2023-02-26 17:47:12,034 INFO Thread-13 :249745 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/config.yaml +2023-02-26 17:47:12,037 INFO Thread-12 :249745 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/requirements.txt +2023-02-26 17:47:12,038 INFO Thread-14 :249745 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/files/wandb-summary.json +2023-02-26 17:47:17,542 DEBUG HandlerThread:249745 [meta.py:_save_conda():84] save conda done +2023-02-26 17:47:17,545 DEBUG HandlerThread:249745 [meta.py:probe():247] probe done +2023-02-26 17:47:17,588 INFO HandlerThread:249745 [handler.py:finish():806] shutting down handler +2023-02-26 17:47:17,592 INFO MainThread:249745 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/logs/debug.log b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..f796badd6886b0dff5447c5512e195559e46fb8c --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/logs/debug.log @@ -0,0 +1,32 @@ +2023-02-26 17:46:26,092 INFO MainThread:247391 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 17:46:26,095 INFO MainThread:247391 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 17:46:26,095 INFO MainThread:247391 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 17:46:26,095 INFO MainThread:247391 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 17:46:26,095 INFO MainThread:247391 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 17:46:26,095 INFO MainThread:247391 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/logs/debug.log +2023-02-26 17:46:26,096 INFO MainThread:247391 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/logs/debug-internal.log +2023-02-26 17:46:26,096 INFO MainThread:247391 [wandb_init.py:init():471] calling init triggers +2023-02-26 17:46:26,101 INFO MainThread:247391 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': 16, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 40, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp9'} +2023-02-26 17:46:26,101 INFO MainThread:247391 [wandb_init.py:init():524] starting backend +2023-02-26 17:46:26,101 INFO MainThread:247391 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 17:46:26,220 INFO MainThread:247391 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 17:46:26,252 INFO MainThread:247391 [backend.py:ensure_launched():222] started backend process with pid: 249745 +2023-02-26 17:46:26,267 INFO MainThread:247391 [wandb_init.py:init():533] backend started and connected +2023-02-26 17:46:26,283 INFO MainThread:247391 [wandb_init.py:init():597] updated telemetry +2023-02-26 17:46:26,448 INFO MainThread:247391 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 17:46:32,209 INFO MainThread:247391 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 17:46:32,379 INFO MainThread:247391 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 17:46:32,379 INFO MainThread:247391 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 17:46:37,551 INFO MainThread:247391 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 17:46:37,556 INFO MainThread:247391 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 17:46:37,557 INFO MainThread:247391 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 17:46:37,562 INFO MainThread:247391 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 17:46:37,562 INFO MainThread:247391 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 17:46:40,665 INFO MainThread:247391 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 1 +2023-02-26 17:46:40,669 INFO MainThread:247391 [wandb_run.py:_restore():1838] restore +2023-02-26 17:46:48,245 INFO MainThread:247391 [wandb_run.py:_on_finish():1995] got exit ret: None +2023-02-26 17:46:53,404 INFO MainThread:247391 [wandb_run.py:_on_finish():1995] got exit ret: None +2023-02-26 17:46:58,568 INFO MainThread:247391 [wandb_run.py:_on_finish():1995] got exit ret: None +2023-02-26 17:47:03,716 INFO MainThread:247391 [wandb_run.py:_on_finish():1995] got exit ret: None diff --git a/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/run-2vk3tzl3.wandb b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/run-2vk3tzl3.wandb new file mode 100644 index 0000000000000000000000000000000000000000..f7e13d31b45c76f2c255058162ce856447ce8e76 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_174625-2vk3tzl3/run-2vk3tzl3.wandb differ diff --git a/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f24b6a4a4bd12d22e7aa6cebbe5625966bdb1f20 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.6 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/config.yaml b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..09c396a28f3f62b409074f5586e69520a3039789 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/config.yaml @@ -0,0 +1,176 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677455270 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 1 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp10 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5s.pt +workers: + desc: null + value: 40 diff --git a/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/output.log b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..cbf62f98ee8b4946b8b110ee6712fac336728c13 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/output.log @@ -0,0 +1,52 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 3520 models.common.Conv [3, 32, 6, 2, 2] + 1 -1 1 18560 models.common.Conv [32, 64, 3, 2] + 2 -1 1 18816 models.common.C3 [64, 64, 1] + 3 -1 1 73984 models.common.Conv [64, 128, 3, 2] + 4 -1 2 115712 models.common.C3 [128, 128, 2] + 5 -1 1 295424 models.common.Conv [128, 256, 3, 2] + 6 -1 3 625152 models.common.C3 [256, 256, 3] + 7 -1 1 1180672 models.common.Conv [256, 512, 3, 2] + 8 -1 1 1182720 models.common.C3 [512, 512, 1] + 9 -1 1 656896 models.common.SPPF [512, 512, 5] + 10 -1 1 131584 models.common.Conv [512, 256, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 1 361984 models.common.C3 [512, 256, 1, False] + 14 -1 1 33024 models.common.Conv [256, 128, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 1 90880 models.common.C3 [256, 128, 1, False] + 18 -1 1 147712 models.common.Conv [128, 128, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 1 296448 models.common.C3 [256, 256, 1, False] + 21 -1 1 590336 models.common.Conv [256, 256, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 1 1182720 models.common.C3 [512, 512, 1, False] + 24 [17, 20, 23] 1 16182 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [128, 256, 512]] +Model summary: 214 layers, 7022326 parameters, 7022326 gradients, 15.9 GFLOPs +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 125, in train + model = Model(cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 907, in to + return self._apply(convert) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/models/yolo.py", line 155, in _apply + self = super()._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 601, in _apply + param_applied = fn(param) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 905, in convert + return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) +RuntimeError: CUDA error: out of memory +CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. +For debugging consider passing CUDA_LAUNCH_BLOCKING=1. \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/requirements.txt b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..6485c6e71c1cb168352c3c0bf392973d7fc9dbea --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-metadata.json @@ -0,0 +1,37 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-26T23:47:57.323741", + "startedAt": "2023-02-26T23:47:50.617478", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 8, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "1", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5s.pt", + "--workers", + "40" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..b1ac4f7d3564b2fd407d247e6957709faa41a169 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 9}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_174750-fys27l4q/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_174750-fys27l4q/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..67858b75c75b116e1d52bea940c0284623f3330f --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174750-fys27l4q/logs/debug-internal.log @@ -0,0 +1,147 @@ +2023-02-26 17:47:53,504 INFO MainThread:256512 [internal.py:wandb_internal():90] W&B internal server running at pid: 256512, started at: 2023-02-26 17:47:53.503362 +2023-02-26 17:47:53,506 INFO WriterThread:256512 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/run-fys27l4q.wandb +2023-02-26 17:47:53,509 DEBUG SenderThread:256512 [sender.py:send():232] send: header +2023-02-26 17:47:53,509 DEBUG SenderThread:256512 [sender.py:send():232] send: run +2023-02-26 17:47:53,519 INFO SenderThread:256512 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/fys27l4q +2023-02-26 17:47:53,677 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 17:47:53,687 INFO SenderThread:256512 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files +2023-02-26 17:47:53,687 INFO SenderThread:256512 [sender.py:_start_run_threads():811] run started: fys27l4q with start time 1677455270 +2023-02-26 17:47:53,687 DEBUG SenderThread:256512 [sender.py:send():232] send: summary +2023-02-26 17:47:53,690 INFO SenderThread:256512 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:47:53,690 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: check_version +2023-02-26 17:47:53,736 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 17:47:54,693 INFO Thread-7 :256512 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-summary.json +2023-02-26 17:47:57,323 DEBUG HandlerThread:256512 [meta.py:__init__():35] meta init +2023-02-26 17:47:57,323 DEBUG HandlerThread:256512 [meta.py:__init__():49] meta init done +2023-02-26 17:47:57,323 DEBUG HandlerThread:256512 [meta.py:probe():209] probe +2023-02-26 17:47:57,332 DEBUG HandlerThread:256512 [meta.py:_setup_git():199] setup git +2023-02-26 17:47:57,380 DEBUG HandlerThread:256512 [meta.py:_setup_git():206] setup git done +2023-02-26 17:47:57,381 DEBUG HandlerThread:256512 [meta.py:_save_pip():53] save pip +2023-02-26 17:47:57,382 DEBUG HandlerThread:256512 [meta.py:_save_pip():67] save pip done +2023-02-26 17:47:57,383 DEBUG HandlerThread:256512 [meta.py:_save_conda():74] save conda +2023-02-26 17:47:57,712 INFO Thread-7 :256512 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/requirements.txt +2023-02-26 17:47:57,713 INFO Thread-7 :256512 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/conda-environment.yaml +2023-02-26 17:47:59,715 INFO Thread-7 :256512 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/output.log +2023-02-26 17:48:01,718 INFO Thread-7 :256512 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/output.log +2023-02-26 17:48:03,065 DEBUG HandlerThread:256512 [meta.py:_save_conda():84] save conda done +2023-02-26 17:48:03,065 DEBUG HandlerThread:256512 [meta.py:probe():247] probe done +2023-02-26 17:48:03,085 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 17:48:03,085 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: stop_status +2023-02-26 17:48:03,161 DEBUG SenderThread:256512 [sender.py:send():232] send: telemetry +2023-02-26 17:48:03,161 DEBUG SenderThread:256512 [sender.py:send():232] send: telemetry +2023-02-26 17:48:03,161 DEBUG SenderThread:256512 [sender.py:send():232] send: files +2023-02-26 17:48:03,168 INFO SenderThread:256512 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-02-26 17:48:03,334 DEBUG SenderThread:256512 [sender.py:send():232] send: exit +2023-02-26 17:48:03,334 INFO SenderThread:256512 [sender.py:send_exit():368] handling exit code: 1 +2023-02-26 17:48:03,334 INFO SenderThread:256512 [sender.py:send_exit():370] handling runtime: 9 +2023-02-26 17:48:03,334 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:48:03,335 INFO SenderThread:256512 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:48:03,335 INFO SenderThread:256512 [sender.py:send_exit():376] send defer +2023-02-26 17:48:03,336 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:48:03,336 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:48:03,336 INFO HandlerThread:256512 [handler.py:handle_request_defer():164] handle defer: 0 +2023-02-26 17:48:03,336 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: defer +2023-02-26 17:48:03,336 INFO SenderThread:256512 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-02-26 17:48:03,336 INFO SenderThread:256512 [sender.py:transition_state():389] send defer: 1 +2023-02-26 17:48:03,336 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:48:03,336 INFO HandlerThread:256512 [handler.py:handle_request_defer():164] handle defer: 1 +2023-02-26 17:48:03,510 INFO Thread-11 :256512 [upload_job.py:push():137] Uploaded file /tmp/tmpgk9ir1zzwandb/2cnka6dz-wandb-metadata.json +2023-02-26 17:48:03,720 INFO Thread-7 :256512 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/output.log +2023-02-26 17:48:03,721 INFO Thread-7 :256512 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-summary.json +2023-02-26 17:48:03,721 INFO Thread-7 :256512 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/conda-environment.yaml +2023-02-26 17:48:03,721 INFO Thread-7 :256512 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-metadata.json +2023-02-26 17:48:03,826 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:48:03,827 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: defer +2023-02-26 17:48:03,827 INFO SenderThread:256512 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-02-26 17:48:03,827 INFO SenderThread:256512 [sender.py:transition_state():389] send defer: 2 +2023-02-26 17:48:03,827 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:48:03,827 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:48:03,827 DEBUG SenderThread:256512 [sender.py:send():232] send: stats +2023-02-26 17:48:03,827 INFO HandlerThread:256512 [handler.py:handle_request_defer():164] handle defer: 2 +2023-02-26 17:48:03,828 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: defer +2023-02-26 17:48:03,828 INFO SenderThread:256512 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-02-26 17:48:03,828 INFO SenderThread:256512 [sender.py:transition_state():389] send defer: 3 +2023-02-26 17:48:03,829 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:48:03,829 INFO HandlerThread:256512 [handler.py:handle_request_defer():164] handle defer: 3 +2023-02-26 17:48:03,829 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: defer +2023-02-26 17:48:03,829 INFO SenderThread:256512 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-02-26 17:48:03,829 INFO SenderThread:256512 [sender.py:transition_state():389] send defer: 4 +2023-02-26 17:48:03,829 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:48:03,829 INFO HandlerThread:256512 [handler.py:handle_request_defer():164] handle defer: 4 +2023-02-26 17:48:03,829 DEBUG SenderThread:256512 [sender.py:send():232] send: summary +2023-02-26 17:48:03,830 INFO SenderThread:256512 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 17:48:03,830 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: defer +2023-02-26 17:48:03,831 INFO SenderThread:256512 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-02-26 17:48:03,831 INFO SenderThread:256512 [sender.py:transition_state():389] send defer: 5 +2023-02-26 17:48:03,831 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:48:03,831 INFO HandlerThread:256512 [handler.py:handle_request_defer():164] handle defer: 5 +2023-02-26 17:48:03,831 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: defer +2023-02-26 17:48:03,831 INFO SenderThread:256512 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-02-26 17:48:03,917 INFO SenderThread:256512 [sender.py:transition_state():389] send defer: 6 +2023-02-26 17:48:03,918 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:48:03,918 INFO HandlerThread:256512 [handler.py:handle_request_defer():164] handle defer: 6 +2023-02-26 17:48:03,918 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: defer +2023-02-26 17:48:03,918 INFO SenderThread:256512 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-02-26 17:48:03,918 INFO SenderThread:256512 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 17:48:03,928 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:48:04,723 INFO SenderThread:256512 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/config.yaml +2023-02-26 17:48:04,723 INFO SenderThread:256512 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files +2023-02-26 17:48:04,724 INFO SenderThread:256512 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/conda-environment.yaml conda-environment.yaml +2023-02-26 17:48:04,724 INFO SenderThread:256512 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-metadata.json wandb-metadata.json +2023-02-26 17:48:04,724 INFO SenderThread:256512 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/requirements.txt requirements.txt +2023-02-26 17:48:04,724 INFO SenderThread:256512 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-summary.json wandb-summary.json +2023-02-26 17:48:04,728 INFO SenderThread:256512 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/output.log output.log +2023-02-26 17:48:04,731 INFO SenderThread:256512 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/config.yaml config.yaml +2023-02-26 17:48:04,736 INFO SenderThread:256512 [sender.py:transition_state():389] send defer: 7 +2023-02-26 17:48:04,736 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:48:04,737 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:48:04,739 INFO HandlerThread:256512 [handler.py:handle_request_defer():164] handle defer: 7 +2023-02-26 17:48:04,739 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: defer +2023-02-26 17:48:04,740 INFO SenderThread:256512 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-02-26 17:48:04,740 INFO SenderThread:256512 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:48:04,840 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:48:04,840 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:48:04,941 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:48:04,941 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:48:05,042 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:48:05,042 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:48:05,065 INFO Thread-14 :256512 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/wandb-summary.json +2023-02-26 17:48:05,073 INFO Thread-13 :256512 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/requirements.txt +2023-02-26 17:48:05,086 INFO Thread-16 :256512 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/config.yaml +2023-02-26 17:48:05,101 INFO Thread-12 :256512 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/conda-environment.yaml +2023-02-26 17:48:05,142 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:48:05,143 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:48:05,162 INFO Thread-15 :256512 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/files/output.log +2023-02-26 17:48:05,243 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:48:05,243 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:48:05,346 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:48:05,346 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:48:05,363 INFO Thread-6 :256512 [sender.py:transition_state():389] send defer: 8 +2023-02-26 17:48:05,363 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:48:05,363 INFO HandlerThread:256512 [handler.py:handle_request_defer():164] handle defer: 8 +2023-02-26 17:48:05,363 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: defer +2023-02-26 17:48:05,363 INFO SenderThread:256512 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-02-26 17:48:05,418 INFO SenderThread:256512 [sender.py:transition_state():389] send defer: 9 +2023-02-26 17:48:05,418 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:48:05,418 INFO HandlerThread:256512 [handler.py:handle_request_defer():164] handle defer: 9 +2023-02-26 17:48:05,418 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: defer +2023-02-26 17:48:05,418 INFO SenderThread:256512 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-02-26 17:48:05,419 INFO SenderThread:256512 [sender.py:transition_state():389] send defer: 10 +2023-02-26 17:48:05,419 DEBUG SenderThread:256512 [sender.py:send():232] send: final +2023-02-26 17:48:05,419 DEBUG SenderThread:256512 [sender.py:send():232] send: footer +2023-02-26 17:48:05,419 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: defer +2023-02-26 17:48:05,419 INFO HandlerThread:256512 [handler.py:handle_request_defer():164] handle defer: 10 +2023-02-26 17:48:05,420 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: defer +2023-02-26 17:48:05,420 INFO SenderThread:256512 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-02-26 17:48:05,447 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 17:48:05,447 DEBUG SenderThread:256512 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 17:48:05,447 INFO SenderThread:256512 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:48:05,632 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: sampled_history +2023-02-26 17:48:05,632 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: get_summary +2023-02-26 17:48:05,632 DEBUG HandlerThread:256512 [handler.py:handle_request():141] handle_request: shutdown +2023-02-26 17:48:05,633 INFO HandlerThread:256512 [handler.py:finish():806] shutting down handler +2023-02-26 17:48:06,419 INFO WriterThread:256512 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/run-fys27l4q.wandb +2023-02-26 17:48:06,531 INFO SenderThread:256512 [sender.py:finish():1106] shutting down sender +2023-02-26 17:48:06,531 INFO SenderThread:256512 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 17:48:06,531 INFO SenderThread:256512 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 17:48:06,536 INFO MainThread:256512 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_174750-fys27l4q/logs/debug.log b/yolov5_model/wandb/run-20230226_174750-fys27l4q/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..4f9e9f8324ae94ff1d95d4002257606b890f672d --- /dev/null +++ b/yolov5_model/wandb/run-20230226_174750-fys27l4q/logs/debug.log @@ -0,0 +1,116 @@ +2023-02-26 17:47:50,636 INFO MainThread:254398 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 17:47:50,637 INFO MainThread:254398 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 17:47:50,637 INFO MainThread:254398 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 17:47:50,637 INFO MainThread:254398 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 17:47:50,637 INFO MainThread:254398 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 17:47:50,637 INFO MainThread:254398 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/logs/debug.log +2023-02-26 17:47:50,637 INFO MainThread:254398 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_174750-fys27l4q/logs/debug-internal.log +2023-02-26 17:47:50,637 INFO MainThread:254398 [wandb_init.py:init():471] calling init triggers +2023-02-26 17:47:50,638 INFO MainThread:254398 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5s.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': 1, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 40, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp10'} +2023-02-26 17:47:50,638 INFO MainThread:254398 [wandb_init.py:init():524] starting backend +2023-02-26 17:47:50,638 INFO MainThread:254398 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 17:47:50,663 INFO MainThread:254398 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 17:47:50,678 INFO MainThread:254398 [backend.py:ensure_launched():222] started backend process with pid: 256512 +2023-02-26 17:47:50,679 INFO MainThread:254398 [wandb_init.py:init():533] backend started and connected +2023-02-26 17:47:50,687 INFO MainThread:254398 [wandb_init.py:init():597] updated telemetry +2023-02-26 17:47:50,734 INFO MainThread:254398 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 17:47:53,676 INFO MainThread:254398 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 17:47:53,734 INFO MainThread:254398 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 17:47:53,735 INFO MainThread:254398 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 17:47:58,741 INFO MainThread:254398 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 17:47:58,742 INFO MainThread:254398 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 17:47:58,743 INFO MainThread:254398 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 17:47:58,744 INFO MainThread:254398 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 17:47:58,745 INFO MainThread:254398 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 17:48:00,746 INFO MainThread:254398 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 1 +2023-02-26 17:48:00,823 INFO MainThread:254398 [wandb_run.py:_restore():1838] restore +2023-02-26 17:48:03,336 INFO MainThread:254398 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 +} +pusher_stats { + uploaded_bytes: 1071 + total_bytes: 1071 +} + +2023-02-26 17:48:03,828 INFO MainThread:254398 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 +} +pusher_stats { + uploaded_bytes: 1071 + total_bytes: 1071 +} + +2023-02-26 17:48:04,739 INFO MainThread:254398 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 1071 + total_bytes: 21935 +} + +2023-02-26 17:48:04,840 INFO MainThread:254398 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21935 + total_bytes: 21935 +} + +2023-02-26 17:48:04,941 INFO MainThread:254398 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21935 + total_bytes: 21935 +} + +2023-02-26 17:48:05,042 INFO MainThread:254398 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21935 + total_bytes: 21935 +} + +2023-02-26 17:48:05,143 INFO MainThread:254398 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21935 + total_bytes: 21935 +} + +2023-02-26 17:48:05,244 INFO MainThread:254398 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21935 + total_bytes: 21935 +} + +2023-02-26 17:48:05,346 INFO MainThread:254398 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21935 + total_bytes: 21935 +} + +2023-02-26 17:48:05,531 INFO MainThread:254398 [wandb_run.py:_on_finish():1995] got exit ret: done: true +exit_result { +} +file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21935 + total_bytes: 21935 +} +local_info { +} + +2023-02-26 17:48:07,558 INFO MainThread:254398 [wandb_run.py:_footer_history_summary_info():3102] rendering history +2023-02-26 17:48:07,558 INFO MainThread:254398 [wandb_run.py:_footer_history_summary_info():3134] rendering summary +2023-02-26 17:48:07,560 INFO MainThread:254398 [wandb_run.py:_footer_sync_info():3057] logging synced files diff --git a/yolov5_model/wandb/run-20230226_174750-fys27l4q/run-fys27l4q.wandb b/yolov5_model/wandb/run-20230226_174750-fys27l4q/run-fys27l4q.wandb new file mode 100644 index 0000000000000000000000000000000000000000..19196846276f5fbc7c3b146f2aeaf0e1426a4b9a Binary files /dev/null and b/yolov5_model/wandb/run-20230226_174750-fys27l4q/run-fys27l4q.wandb differ diff --git a/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/config.yaml b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..06a5405ba5c1e5c9dbf692e083ab27ad72405617 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/config.yaml @@ -0,0 +1,176 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677456816 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 1 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp11 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5n.pt +workers: + desc: null + value: 8 diff --git a/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/output.log b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..7a946b7fdf5fb4ef50262e44823c279036544fa9 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/output.log @@ -0,0 +1,54 @@ +Downloading https://github.com/ultralytics/yolov5/releases/download/v7.0/yolov5n.pt to yolov5n.pt... +100%|████████████████████████████████████████████████████████████| 3.87M/3.87M [00:00<00:00, 71.5MB/s] +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 1760 models.common.Conv [3, 16, 6, 2, 2] + 1 -1 1 4672 models.common.Conv [16, 32, 3, 2] + 2 -1 1 4800 models.common.C3 [32, 32, 1] + 3 -1 1 18560 models.common.Conv [32, 64, 3, 2] + 4 -1 2 29184 models.common.C3 [64, 64, 2] + 5 -1 1 73984 models.common.Conv [64, 128, 3, 2] + 6 -1 3 156928 models.common.C3 [128, 128, 3] + 7 -1 1 295424 models.common.Conv [128, 256, 3, 2] + 8 -1 1 296448 models.common.C3 [256, 256, 1] + 9 -1 1 164608 models.common.SPPF [256, 256, 5] + 10 -1 1 33024 models.common.Conv [256, 128, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 1 90880 models.common.C3 [256, 128, 1, False] + 14 -1 1 8320 models.common.Conv [128, 64, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 1 22912 models.common.C3 [128, 64, 1, False] + 18 -1 1 36992 models.common.Conv [64, 64, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 1 74496 models.common.C3 [128, 128, 1, False] + 21 -1 1 147712 models.common.Conv [128, 128, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 1 296448 models.common.C3 [256, 256, 1, False] + 24 [17, 20, 23] 1 8118 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [64, 128, 256]] +Model summary: 214 layers, 1765270 parameters, 1765270 gradients, 4.2 GFLOPs +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 125, in train + model = Model(cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 907, in to + return self._apply(convert) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/models/yolo.py", line 155, in _apply + self = super()._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 601, in _apply + param_applied = fn(param) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 905, in convert + return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) +RuntimeError: CUDA error: out of memory +CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. +For debugging consider passing CUDA_LAUNCH_BLOCKING=1. \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/requirements.txt b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..19ac2bea8b845505c59828fd01610ee45c97c1eb --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-metadata.json @@ -0,0 +1,35 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-27T00:13:56.299357", + "startedAt": "2023-02-27T00:13:36.648260", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 8, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "1", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5n.pt" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..5118b50d79d9370dee544d0cb19c11385cc1bdf0 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 15}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..f28195085d66c110835992963e7b116b8f258fc8 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/logs/debug-internal.log @@ -0,0 +1,129 @@ +2023-02-26 18:13:41,380 INFO MainThread:96255 [internal.py:wandb_internal():90] W&B internal server running at pid: 96255, started at: 2023-02-26 18:13:41.378921 +2023-02-26 18:13:41,402 INFO WriterThread:96255 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/run-tzc0g9ld.wandb +2023-02-26 18:13:41,406 DEBUG SenderThread:96255 [sender.py:send():232] send: header +2023-02-26 18:13:41,406 DEBUG SenderThread:96255 [sender.py:send():232] send: run +2023-02-26 18:13:41,418 INFO SenderThread:96255 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/tzc0g9ld +2023-02-26 18:13:41,723 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 18:13:41,735 INFO SenderThread:96255 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files +2023-02-26 18:13:41,735 INFO SenderThread:96255 [sender.py:_start_run_threads():811] run started: tzc0g9ld with start time 1677456816 +2023-02-26 18:13:41,735 DEBUG SenderThread:96255 [sender.py:send():232] send: summary +2023-02-26 18:13:41,737 INFO SenderThread:96255 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 18:13:41,737 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: check_version +2023-02-26 18:13:41,799 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 18:13:47,618 INFO Thread-7 :96255 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/output.log +2023-02-26 18:13:47,619 INFO Thread-7 :96255 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-summary.json +2023-02-26 18:13:49,745 INFO Thread-7 :96255 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/output.log +2023-02-26 18:13:51,747 INFO Thread-7 :96255 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/output.log +2023-02-26 18:13:56,299 DEBUG HandlerThread:96255 [meta.py:__init__():35] meta init +2023-02-26 18:13:56,299 DEBUG HandlerThread:96255 [meta.py:__init__():49] meta init done +2023-02-26 18:13:56,299 DEBUG HandlerThread:96255 [meta.py:probe():209] probe +2023-02-26 18:13:56,309 DEBUG HandlerThread:96255 [meta.py:_setup_git():199] setup git +2023-02-26 18:13:56,366 DEBUG HandlerThread:96255 [meta.py:_setup_git():206] setup git done +2023-02-26 18:13:56,366 DEBUG HandlerThread:96255 [meta.py:_save_pip():53] save pip +2023-02-26 18:13:56,368 DEBUG HandlerThread:96255 [meta.py:_save_pip():67] save pip done +2023-02-26 18:13:56,368 DEBUG HandlerThread:96255 [meta.py:_save_conda():74] save conda +2023-02-26 18:13:56,790 INFO Thread-7 :96255 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/requirements.txt +2023-02-26 18:13:56,792 INFO Thread-7 :96255 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/conda-environment.yaml +2023-02-26 18:13:57,427 WARNING MainThread:96255 [internal.py:wandb_internal():153] Internal process interrupt: 1 +2023-02-26 18:13:57,491 DEBUG HandlerThread:96255 [meta.py:_save_conda():84] save conda done +2023-02-26 18:13:57,492 DEBUG HandlerThread:96255 [meta.py:probe():247] probe done +2023-02-26 18:13:57,500 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 18:13:57,501 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: stop_status +2023-02-26 18:13:57,507 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:13:57,508 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:13:57,580 DEBUG SenderThread:96255 [sender.py:send():232] send: telemetry +2023-02-26 18:13:57,581 DEBUG SenderThread:96255 [sender.py:send():232] send: telemetry +2023-02-26 18:13:57,583 DEBUG SenderThread:96255 [sender.py:send():232] send: exit +2023-02-26 18:13:57,583 INFO SenderThread:96255 [sender.py:send_exit():368] handling exit code: 1 +2023-02-26 18:13:57,583 INFO SenderThread:96255 [sender.py:send_exit():370] handling runtime: 15 +2023-02-26 18:13:57,585 INFO SenderThread:96255 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 18:13:57,585 INFO SenderThread:96255 [sender.py:send_exit():376] send defer +2023-02-26 18:13:57,585 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:13:57,585 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:13:57,585 DEBUG SenderThread:96255 [sender.py:send():232] send: files +2023-02-26 18:13:57,585 INFO SenderThread:96255 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-02-26 18:13:57,586 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:13:57,586 INFO HandlerThread:96255 [handler.py:handle_request_defer():164] handle defer: 0 +2023-02-26 18:13:57,586 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: defer +2023-02-26 18:13:57,587 INFO SenderThread:96255 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-02-26 18:13:57,587 INFO SenderThread:96255 [sender.py:transition_state():389] send defer: 1 +2023-02-26 18:13:57,588 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:13:57,588 INFO HandlerThread:96255 [handler.py:handle_request_defer():164] handle defer: 1 +2023-02-26 18:13:57,790 INFO Thread-7 :96255 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-summary.json +2023-02-26 18:13:57,791 INFO Thread-7 :96255 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-metadata.json +2023-02-26 18:13:57,907 INFO Thread-11 :96255 [upload_job.py:push():137] Uploaded file /tmp/tmpznl0bkx0wandb/zz9k064r-wandb-metadata.json +2023-02-26 18:13:58,095 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: defer +2023-02-26 18:13:58,096 INFO SenderThread:96255 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-02-26 18:13:58,096 INFO SenderThread:96255 [sender.py:transition_state():389] send defer: 2 +2023-02-26 18:13:58,096 DEBUG SenderThread:96255 [sender.py:send():232] send: stats +2023-02-26 18:13:58,097 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:13:58,097 INFO HandlerThread:96255 [handler.py:handle_request_defer():164] handle defer: 2 +2023-02-26 18:13:58,097 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: defer +2023-02-26 18:13:58,097 INFO SenderThread:96255 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-02-26 18:13:58,097 INFO SenderThread:96255 [sender.py:transition_state():389] send defer: 3 +2023-02-26 18:13:58,097 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:13:58,097 INFO HandlerThread:96255 [handler.py:handle_request_defer():164] handle defer: 3 +2023-02-26 18:13:58,097 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: defer +2023-02-26 18:13:58,097 INFO SenderThread:96255 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-02-26 18:13:58,097 INFO SenderThread:96255 [sender.py:transition_state():389] send defer: 4 +2023-02-26 18:13:58,098 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:13:58,098 INFO HandlerThread:96255 [handler.py:handle_request_defer():164] handle defer: 4 +2023-02-26 18:13:58,098 DEBUG SenderThread:96255 [sender.py:send():232] send: summary +2023-02-26 18:13:58,099 INFO SenderThread:96255 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 18:13:58,099 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: defer +2023-02-26 18:13:58,099 INFO SenderThread:96255 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-02-26 18:13:58,099 INFO SenderThread:96255 [sender.py:transition_state():389] send defer: 5 +2023-02-26 18:13:58,100 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:13:58,100 INFO HandlerThread:96255 [handler.py:handle_request_defer():164] handle defer: 5 +2023-02-26 18:13:58,100 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: defer +2023-02-26 18:13:58,100 INFO SenderThread:96255 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-02-26 18:13:58,227 INFO SenderThread:96255 [sender.py:transition_state():389] send defer: 6 +2023-02-26 18:13:58,228 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:13:58,228 INFO HandlerThread:96255 [handler.py:handle_request_defer():164] handle defer: 6 +2023-02-26 18:13:58,228 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: defer +2023-02-26 18:13:58,228 INFO SenderThread:96255 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-02-26 18:13:58,228 INFO SenderThread:96255 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 18:13:58,795 INFO SenderThread:96255 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/config.yaml +2023-02-26 18:13:58,796 INFO SenderThread:96255 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-summary.json +2023-02-26 18:13:58,796 INFO SenderThread:96255 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files +2023-02-26 18:13:58,797 INFO SenderThread:96255 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/conda-environment.yaml conda-environment.yaml +2023-02-26 18:13:58,797 INFO SenderThread:96255 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-metadata.json wandb-metadata.json +2023-02-26 18:13:58,797 INFO SenderThread:96255 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/output.log output.log +2023-02-26 18:13:58,797 INFO SenderThread:96255 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-summary.json wandb-summary.json +2023-02-26 18:13:58,797 INFO SenderThread:96255 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/requirements.txt requirements.txt +2023-02-26 18:13:58,800 INFO SenderThread:96255 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/config.yaml config.yaml +2023-02-26 18:13:58,803 INFO SenderThread:96255 [sender.py:transition_state():389] send defer: 7 +2023-02-26 18:13:58,806 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:13:58,806 INFO HandlerThread:96255 [handler.py:handle_request_defer():164] handle defer: 7 +2023-02-26 18:13:58,806 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: defer +2023-02-26 18:13:58,809 INFO SenderThread:96255 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-02-26 18:13:58,809 INFO SenderThread:96255 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 18:13:59,330 INFO Thread-13 :96255 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/wandb-summary.json +2023-02-26 18:13:59,337 INFO Thread-15 :96255 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/config.yaml +2023-02-26 18:13:59,352 INFO Thread-12 :96255 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/output.log +2023-02-26 18:13:59,353 INFO Thread-14 :96255 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/files/requirements.txt +2023-02-26 18:13:59,634 INFO Thread-6 :96255 [sender.py:transition_state():389] send defer: 8 +2023-02-26 18:13:59,640 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:13:59,640 INFO HandlerThread:96255 [handler.py:handle_request_defer():164] handle defer: 8 +2023-02-26 18:13:59,640 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: defer +2023-02-26 18:13:59,641 INFO SenderThread:96255 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-02-26 18:13:59,812 INFO SenderThread:96255 [sender.py:transition_state():389] send defer: 9 +2023-02-26 18:13:59,815 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:13:59,815 INFO HandlerThread:96255 [handler.py:handle_request_defer():164] handle defer: 9 +2023-02-26 18:13:59,815 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: defer +2023-02-26 18:13:59,815 INFO SenderThread:96255 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-02-26 18:13:59,815 INFO SenderThread:96255 [sender.py:transition_state():389] send defer: 10 +2023-02-26 18:13:59,818 DEBUG SenderThread:96255 [sender.py:send():232] send: final +2023-02-26 18:13:59,818 DEBUG HandlerThread:96255 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:13:59,818 DEBUG SenderThread:96255 [sender.py:send():232] send: footer +2023-02-26 18:13:59,818 INFO HandlerThread:96255 [handler.py:handle_request_defer():164] handle defer: 10 +2023-02-26 18:13:59,818 DEBUG SenderThread:96255 [sender.py:send_request():246] send_request: defer +2023-02-26 18:13:59,818 INFO SenderThread:96255 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-02-26 18:14:04,455 WARNING MainThread:96255 [internal.py:is_dead():387] Internal process exiting, parent pid 93932 disappeared +2023-02-26 18:14:04,470 ERROR MainThread:96255 [internal.py:wandb_internal():149] Internal process shutdown. +2023-02-26 18:14:04,839 INFO WriterThread:96255 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/run-tzc0g9ld.wandb +2023-02-26 18:14:04,850 INFO SenderThread:96255 [sender.py:finish():1106] shutting down sender +2023-02-26 18:14:04,850 INFO SenderThread:96255 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 18:14:04,851 INFO SenderThread:96255 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 18:14:04,853 INFO HandlerThread:96255 [handler.py:finish():806] shutting down handler +2023-02-26 18:14:04,874 INFO MainThread:96255 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/logs/debug.log b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..3659527a358f352547828e11a96f4b1b84324b5b --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/logs/debug.log @@ -0,0 +1,29 @@ +2023-02-26 18:13:36,687 INFO MainThread:93932 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 18:13:36,688 INFO MainThread:93932 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 18:13:36,688 INFO MainThread:93932 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 18:13:36,688 INFO MainThread:93932 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 18:13:36,688 INFO MainThread:93932 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 18:13:36,688 INFO MainThread:93932 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/logs/debug.log +2023-02-26 18:13:36,688 INFO MainThread:93932 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/logs/debug-internal.log +2023-02-26 18:13:36,689 INFO MainThread:93932 [wandb_init.py:init():471] calling init triggers +2023-02-26 18:13:36,690 INFO MainThread:93932 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5n.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': 1, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 8, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp11'} +2023-02-26 18:13:36,690 INFO MainThread:93932 [wandb_init.py:init():524] starting backend +2023-02-26 18:13:36,690 INFO MainThread:93932 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 18:13:36,708 INFO MainThread:93932 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 18:13:36,729 INFO MainThread:93932 [backend.py:ensure_launched():222] started backend process with pid: 96255 +2023-02-26 18:13:36,732 INFO MainThread:93932 [wandb_init.py:init():533] backend started and connected +2023-02-26 18:13:36,739 INFO MainThread:93932 [wandb_init.py:init():597] updated telemetry +2023-02-26 18:13:36,789 INFO MainThread:93932 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 18:13:41,722 INFO MainThread:93932 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 18:13:41,797 INFO MainThread:93932 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 18:13:41,797 INFO MainThread:93932 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 18:13:46,811 INFO MainThread:93932 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 18:13:46,812 INFO MainThread:93932 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 18:13:46,813 INFO MainThread:93932 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 18:13:46,818 INFO MainThread:93932 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 18:13:46,818 INFO MainThread:93932 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 18:13:48,971 INFO MainThread:93932 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 1 +2023-02-26 18:13:48,976 INFO MainThread:93932 [wandb_run.py:_restore():1838] restore +2023-02-26 18:13:56,375 INFO MainThread:93932 [wandb_run.py:_on_finish():1995] got exit ret: None diff --git a/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/run-tzc0g9ld.wandb b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/run-tzc0g9ld.wandb new file mode 100644 index 0000000000000000000000000000000000000000..fbe867cae8ae0b6ea2af2cc325fa7e38bcf005e5 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_181336-tzc0g9ld/run-tzc0g9ld.wandb differ diff --git a/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/config.yaml b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..bd22410cd8d3f4f7b5aecda27b6b754e67fae062 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/config.yaml @@ -0,0 +1,176 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677456928 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 1 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp12 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5n.pt +workers: + desc: null + value: 8 diff --git a/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/output.log b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..0d57afde8b955f5cba169b0d25dd009bfdee0887 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/output.log @@ -0,0 +1,52 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 1760 models.common.Conv [3, 16, 6, 2, 2] + 1 -1 1 4672 models.common.Conv [16, 32, 3, 2] + 2 -1 1 4800 models.common.C3 [32, 32, 1] + 3 -1 1 18560 models.common.Conv [32, 64, 3, 2] + 4 -1 2 29184 models.common.C3 [64, 64, 2] + 5 -1 1 73984 models.common.Conv [64, 128, 3, 2] + 6 -1 3 156928 models.common.C3 [128, 128, 3] + 7 -1 1 295424 models.common.Conv [128, 256, 3, 2] + 8 -1 1 296448 models.common.C3 [256, 256, 1] + 9 -1 1 164608 models.common.SPPF [256, 256, 5] + 10 -1 1 33024 models.common.Conv [256, 128, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 1 90880 models.common.C3 [256, 128, 1, False] + 14 -1 1 8320 models.common.Conv [128, 64, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 1 22912 models.common.C3 [128, 64, 1, False] + 18 -1 1 36992 models.common.Conv [64, 64, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 1 74496 models.common.C3 [128, 128, 1, False] + 21 -1 1 147712 models.common.Conv [128, 128, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 1 296448 models.common.C3 [256, 256, 1, False] + 24 [17, 20, 23] 1 8118 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [64, 128, 256]] +Model summary: 214 layers, 1765270 parameters, 1765270 gradients, 4.2 GFLOPs +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 125, in train + model = Model(cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 907, in to + return self._apply(convert) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/models/yolo.py", line 155, in _apply + self = super()._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 601, in _apply + param_applied = fn(param) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 905, in convert + return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) +RuntimeError: CUDA error: out of memory +CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. +For debugging consider passing CUDA_LAUNCH_BLOCKING=1. \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/requirements.txt b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..ff2c66c13aac222122522c45460d1f7d0ab311eb --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-metadata.json @@ -0,0 +1,35 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-27T00:15:32.896258", + "startedAt": "2023-02-27T00:15:28.428961", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 8, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "1", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5n.pt" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..a594e25ada167c5ad54a828e8a5b1a6223620b44 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-summary.json @@ -0,0 +1 @@ +{"_wandb": {"runtime": 8}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_181528-3aai7fdf/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..b833e11c730f067bea8a312e370e57ba63cb489a --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/logs/debug-internal.log @@ -0,0 +1,148 @@ +2023-02-26 18:15:30,161 INFO MainThread:103361 [internal.py:wandb_internal():90] W&B internal server running at pid: 103361, started at: 2023-02-26 18:15:30.160173 +2023-02-26 18:15:30,165 INFO WriterThread:103361 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/run-3aai7fdf.wandb +2023-02-26 18:15:30,167 DEBUG SenderThread:103361 [sender.py:send():232] send: header +2023-02-26 18:15:30,168 DEBUG SenderThread:103361 [sender.py:send():232] send: run +2023-02-26 18:15:30,177 INFO SenderThread:103361 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/3aai7fdf +2023-02-26 18:15:30,372 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 18:15:30,380 INFO SenderThread:103361 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files +2023-02-26 18:15:30,380 INFO SenderThread:103361 [sender.py:_start_run_threads():811] run started: 3aai7fdf with start time 1677456928 +2023-02-26 18:15:30,380 DEBUG SenderThread:103361 [sender.py:send():232] send: summary +2023-02-26 18:15:30,381 INFO SenderThread:103361 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 18:15:30,382 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: check_version +2023-02-26 18:15:30,428 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 18:15:31,432 INFO Thread-7 :103361 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-summary.json +2023-02-26 18:15:32,895 DEBUG HandlerThread:103361 [meta.py:__init__():35] meta init +2023-02-26 18:15:32,896 DEBUG HandlerThread:103361 [meta.py:__init__():49] meta init done +2023-02-26 18:15:32,896 DEBUG HandlerThread:103361 [meta.py:probe():209] probe +2023-02-26 18:15:32,904 DEBUG HandlerThread:103361 [meta.py:_setup_git():199] setup git +2023-02-26 18:15:32,952 DEBUG HandlerThread:103361 [meta.py:_setup_git():206] setup git done +2023-02-26 18:15:32,952 DEBUG HandlerThread:103361 [meta.py:_save_pip():53] save pip +2023-02-26 18:15:32,954 DEBUG HandlerThread:103361 [meta.py:_save_pip():67] save pip done +2023-02-26 18:15:32,954 DEBUG HandlerThread:103361 [meta.py:_save_conda():74] save conda +2023-02-26 18:15:33,434 INFO Thread-7 :103361 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/requirements.txt +2023-02-26 18:15:33,435 INFO Thread-7 :103361 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/conda-environment.yaml +2023-02-26 18:15:35,435 INFO Thread-7 :103361 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/output.log +2023-02-26 18:15:38,252 DEBUG HandlerThread:103361 [meta.py:_save_conda():84] save conda done +2023-02-26 18:15:38,253 DEBUG HandlerThread:103361 [meta.py:probe():247] probe done +2023-02-26 18:15:38,263 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 18:15:38,263 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: stop_status +2023-02-26 18:15:38,321 DEBUG SenderThread:103361 [sender.py:send():232] send: telemetry +2023-02-26 18:15:38,321 DEBUG SenderThread:103361 [sender.py:send():232] send: telemetry +2023-02-26 18:15:38,322 DEBUG SenderThread:103361 [sender.py:send():232] send: files +2023-02-26 18:15:38,323 INFO SenderThread:103361 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-02-26 18:15:38,448 INFO Thread-7 :103361 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/conda-environment.yaml +2023-02-26 18:15:38,449 INFO Thread-7 :103361 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/output.log +2023-02-26 18:15:38,449 INFO Thread-7 :103361 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-metadata.json +2023-02-26 18:15:38,663 INFO Thread-11 :103361 [upload_job.py:push():137] Uploaded file /tmp/tmpulihoda5wandb/3h9iczwz-wandb-metadata.json +2023-02-26 18:15:38,958 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:15:38,959 DEBUG SenderThread:103361 [sender.py:send():232] send: exit +2023-02-26 18:15:38,959 INFO SenderThread:103361 [sender.py:send_exit():368] handling exit code: 1 +2023-02-26 18:15:38,959 INFO SenderThread:103361 [sender.py:send_exit():370] handling runtime: 8 +2023-02-26 18:15:38,961 INFO SenderThread:103361 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 18:15:38,961 INFO SenderThread:103361 [sender.py:send_exit():376] send defer +2023-02-26 18:15:38,961 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:15:38,961 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:15:38,962 INFO HandlerThread:103361 [handler.py:handle_request_defer():164] handle defer: 0 +2023-02-26 18:15:38,962 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: defer +2023-02-26 18:15:38,962 INFO SenderThread:103361 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-02-26 18:15:38,962 INFO SenderThread:103361 [sender.py:transition_state():389] send defer: 1 +2023-02-26 18:15:38,962 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:15:38,962 INFO HandlerThread:103361 [handler.py:handle_request_defer():164] handle defer: 1 +2023-02-26 18:15:39,450 INFO Thread-7 :103361 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-summary.json +2023-02-26 18:15:39,450 INFO Thread-7 :103361 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/output.log +2023-02-26 18:15:39,506 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:15:39,506 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: defer +2023-02-26 18:15:39,507 INFO SenderThread:103361 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-02-26 18:15:39,507 INFO SenderThread:103361 [sender.py:transition_state():389] send defer: 2 +2023-02-26 18:15:39,507 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:15:39,507 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:15:39,508 DEBUG SenderThread:103361 [sender.py:send():232] send: stats +2023-02-26 18:15:39,508 INFO HandlerThread:103361 [handler.py:handle_request_defer():164] handle defer: 2 +2023-02-26 18:15:39,509 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: defer +2023-02-26 18:15:39,509 INFO SenderThread:103361 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-02-26 18:15:39,509 INFO SenderThread:103361 [sender.py:transition_state():389] send defer: 3 +2023-02-26 18:15:39,509 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:15:39,509 INFO HandlerThread:103361 [handler.py:handle_request_defer():164] handle defer: 3 +2023-02-26 18:15:39,509 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: defer +2023-02-26 18:15:39,509 INFO SenderThread:103361 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-02-26 18:15:39,509 INFO SenderThread:103361 [sender.py:transition_state():389] send defer: 4 +2023-02-26 18:15:39,509 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:15:39,509 INFO HandlerThread:103361 [handler.py:handle_request_defer():164] handle defer: 4 +2023-02-26 18:15:39,510 DEBUG SenderThread:103361 [sender.py:send():232] send: summary +2023-02-26 18:15:39,511 INFO SenderThread:103361 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 18:15:39,511 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: defer +2023-02-26 18:15:39,511 INFO SenderThread:103361 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-02-26 18:15:39,511 INFO SenderThread:103361 [sender.py:transition_state():389] send defer: 5 +2023-02-26 18:15:39,511 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:15:39,511 INFO HandlerThread:103361 [handler.py:handle_request_defer():164] handle defer: 5 +2023-02-26 18:15:39,511 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: defer +2023-02-26 18:15:39,511 INFO SenderThread:103361 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-02-26 18:15:39,607 INFO SenderThread:103361 [sender.py:transition_state():389] send defer: 6 +2023-02-26 18:15:39,608 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:15:39,608 INFO HandlerThread:103361 [handler.py:handle_request_defer():164] handle defer: 6 +2023-02-26 18:15:39,608 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: defer +2023-02-26 18:15:39,608 INFO SenderThread:103361 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-02-26 18:15:39,608 INFO SenderThread:103361 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 18:15:39,609 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:15:40,453 INFO SenderThread:103361 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/config.yaml +2023-02-26 18:15:40,453 INFO SenderThread:103361 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-summary.json +2023-02-26 18:15:40,453 INFO SenderThread:103361 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files +2023-02-26 18:15:40,454 INFO SenderThread:103361 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/requirements.txt requirements.txt +2023-02-26 18:15:40,454 INFO SenderThread:103361 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/output.log output.log +2023-02-26 18:15:40,454 INFO SenderThread:103361 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/conda-environment.yaml conda-environment.yaml +2023-02-26 18:15:40,458 INFO SenderThread:103361 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/config.yaml config.yaml +2023-02-26 18:15:40,463 INFO SenderThread:103361 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-metadata.json wandb-metadata.json +2023-02-26 18:15:40,463 INFO SenderThread:103361 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-summary.json wandb-summary.json +2023-02-26 18:15:40,466 INFO SenderThread:103361 [sender.py:transition_state():389] send defer: 7 +2023-02-26 18:15:40,467 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:15:40,467 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:15:40,467 INFO HandlerThread:103361 [handler.py:handle_request_defer():164] handle defer: 7 +2023-02-26 18:15:40,469 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: defer +2023-02-26 18:15:40,470 INFO SenderThread:103361 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-02-26 18:15:40,470 INFO SenderThread:103361 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 18:15:40,568 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:15:40,568 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:15:40,669 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:15:40,669 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:15:40,770 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:15:40,770 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:15:40,784 INFO Thread-15 :103361 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/config.yaml +2023-02-26 18:15:40,786 INFO Thread-14 :103361 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/conda-environment.yaml +2023-02-26 18:15:40,795 INFO Thread-16 :103361 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/wandb-summary.json +2023-02-26 18:15:40,796 INFO Thread-13 :103361 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/output.log +2023-02-26 18:15:40,828 INFO Thread-12 :103361 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/files/requirements.txt +2023-02-26 18:15:40,871 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:15:40,871 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:15:40,972 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:15:40,972 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:15:41,029 INFO Thread-6 :103361 [sender.py:transition_state():389] send defer: 8 +2023-02-26 18:15:41,029 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:15:41,029 INFO HandlerThread:103361 [handler.py:handle_request_defer():164] handle defer: 8 +2023-02-26 18:15:41,029 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: defer +2023-02-26 18:15:41,029 INFO SenderThread:103361 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-02-26 18:15:41,073 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:15:41,158 INFO SenderThread:103361 [sender.py:transition_state():389] send defer: 9 +2023-02-26 18:15:41,158 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:15:41,159 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:15:41,159 INFO HandlerThread:103361 [handler.py:handle_request_defer():164] handle defer: 9 +2023-02-26 18:15:41,159 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: defer +2023-02-26 18:15:41,159 INFO SenderThread:103361 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-02-26 18:15:41,159 INFO SenderThread:103361 [sender.py:transition_state():389] send defer: 10 +2023-02-26 18:15:41,160 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: defer +2023-02-26 18:15:41,160 DEBUG SenderThread:103361 [sender.py:send():232] send: final +2023-02-26 18:15:41,160 INFO HandlerThread:103361 [handler.py:handle_request_defer():164] handle defer: 10 +2023-02-26 18:15:41,160 DEBUG SenderThread:103361 [sender.py:send():232] send: footer +2023-02-26 18:15:41,160 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: defer +2023-02-26 18:15:41,160 INFO SenderThread:103361 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-02-26 18:15:41,259 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 18:15:41,260 DEBUG SenderThread:103361 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 18:15:41,260 INFO SenderThread:103361 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 18:15:41,452 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: sampled_history +2023-02-26 18:15:41,452 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: get_summary +2023-02-26 18:15:41,453 DEBUG HandlerThread:103361 [handler.py:handle_request():141] handle_request: shutdown +2023-02-26 18:15:41,453 INFO HandlerThread:103361 [handler.py:finish():806] shutting down handler +2023-02-26 18:15:42,160 INFO WriterThread:103361 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/run-3aai7fdf.wandb +2023-02-26 18:15:42,351 INFO SenderThread:103361 [sender.py:finish():1106] shutting down sender +2023-02-26 18:15:42,351 INFO SenderThread:103361 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 18:15:42,351 INFO SenderThread:103361 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 18:15:42,354 INFO MainThread:103361 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_181528-3aai7fdf/logs/debug.log b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..e105419881228a5bf6639bcd6da2980b3082b05d --- /dev/null +++ b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/logs/debug.log @@ -0,0 +1,116 @@ +2023-02-26 18:15:28,464 INFO MainThread:102986 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 18:15:28,464 INFO MainThread:102986 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 18:15:28,464 INFO MainThread:102986 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 18:15:28,464 INFO MainThread:102986 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 18:15:28,464 INFO MainThread:102986 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 18:15:28,464 INFO MainThread:102986 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/logs/debug.log +2023-02-26 18:15:28,464 INFO MainThread:102986 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_181528-3aai7fdf/logs/debug-internal.log +2023-02-26 18:15:28,465 INFO MainThread:102986 [wandb_init.py:init():471] calling init triggers +2023-02-26 18:15:28,465 INFO MainThread:102986 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5n.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': 1, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 8, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp12'} +2023-02-26 18:15:28,465 INFO MainThread:102986 [wandb_init.py:init():524] starting backend +2023-02-26 18:15:28,465 INFO MainThread:102986 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 18:15:28,482 INFO MainThread:102986 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 18:15:28,496 INFO MainThread:102986 [backend.py:ensure_launched():222] started backend process with pid: 103361 +2023-02-26 18:15:28,497 INFO MainThread:102986 [wandb_init.py:init():533] backend started and connected +2023-02-26 18:15:28,505 INFO MainThread:102986 [wandb_init.py:init():597] updated telemetry +2023-02-26 18:15:28,545 INFO MainThread:102986 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 18:15:30,372 INFO MainThread:102986 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 18:15:30,426 INFO MainThread:102986 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 18:15:30,426 INFO MainThread:102986 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 18:15:35,432 INFO MainThread:102986 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 18:15:35,434 INFO MainThread:102986 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 18:15:35,434 INFO MainThread:102986 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 18:15:35,436 INFO MainThread:102986 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 18:15:35,436 INFO MainThread:102986 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 18:15:36,593 INFO MainThread:102986 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 1 +2023-02-26 18:15:36,596 INFO MainThread:102986 [wandb_run.py:_restore():1838] restore +2023-02-26 18:15:38,962 INFO MainThread:102986 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 +} +pusher_stats { + uploaded_bytes: 1036 + total_bytes: 1036 +} + +2023-02-26 18:15:39,508 INFO MainThread:102986 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 +} +pusher_stats { + uploaded_bytes: 1036 + total_bytes: 1036 +} + +2023-02-26 18:15:40,467 INFO MainThread:102986 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 1036 + total_bytes: 21889 +} + +2023-02-26 18:15:40,569 INFO MainThread:102986 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21889 + total_bytes: 21889 +} + +2023-02-26 18:15:40,670 INFO MainThread:102986 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21889 + total_bytes: 21889 +} + +2023-02-26 18:15:40,771 INFO MainThread:102986 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21889 + total_bytes: 21889 +} + +2023-02-26 18:15:40,872 INFO MainThread:102986 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21889 + total_bytes: 21889 +} + +2023-02-26 18:15:40,973 INFO MainThread:102986 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21889 + total_bytes: 21889 +} + +2023-02-26 18:15:41,159 INFO MainThread:102986 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21889 + total_bytes: 21889 +} + +2023-02-26 18:15:41,351 INFO MainThread:102986 [wandb_run.py:_on_finish():1995] got exit ret: done: true +exit_result { +} +file_counts { + wandb_count: 6 +} +pusher_stats { + uploaded_bytes: 21889 + total_bytes: 21889 +} +local_info { +} + +2023-02-26 18:15:43,118 INFO MainThread:102986 [wandb_run.py:_footer_history_summary_info():3102] rendering history +2023-02-26 18:15:43,118 INFO MainThread:102986 [wandb_run.py:_footer_history_summary_info():3134] rendering summary +2023-02-26 18:15:43,119 INFO MainThread:102986 [wandb_run.py:_footer_sync_info():3057] logging synced files diff --git a/yolov5_model/wandb/run-20230226_181528-3aai7fdf/run-3aai7fdf.wandb b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/run-3aai7fdf.wandb new file mode 100644 index 0000000000000000000000000000000000000000..fee51f2e453b7a2132f01d00787d06ac3d182069 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_181528-3aai7fdf/run-3aai7fdf.wandb differ diff --git a/yolov5_model/wandb/run-20230226_192141-shtac223/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_192141-shtac223/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192141-shtac223/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_192141-shtac223/files/config.yaml b/yolov5_model/wandb/run-20230226_192141-shtac223/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2ea5e9f32e11ccde4262502241b58be136a617a8 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192141-shtac223/files/config.yaml @@ -0,0 +1,170 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677460901 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 16 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp13 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 40 diff --git a/yolov5_model/wandb/run-20230226_192141-shtac223/files/output.log b/yolov5_model/wandb/run-20230226_192141-shtac223/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..b4e8e32f0665ab911a5e09eaf85780e153f5183a --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192141-shtac223/files/output.log @@ -0,0 +1,52 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Traceback (most recent call last): + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 640, in <module> + main(opt) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 529, in main + train(opt.hyp, opt, device, callbacks) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", line 125, in train + model = Model(cfg or ckpt['model'].yaml, ch=3, nc=nc, anchors=hyp.get('anchors')).to(device) # create + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 907, in to + return self._apply(convert) + File "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/models/yolo.py", line 155, in _apply + self = super()._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 578, in _apply + module._apply(fn) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 601, in _apply + param_applied = fn(param) + File "/raid/projects/akhot2/conda/envs/akhot2/lib/python3.9/site-packages/torch/nn/modules/module.py", line 905, in convert + return t.to(device, dtype if t.is_floating_point() or t.is_complex() else None, non_blocking) +RuntimeError: CUDA error: out of memory +CUDA kernel errors might be asynchronously reported at some other API call,so the stacktrace below might be incorrect. +For debugging consider passing CUDA_LAUNCH_BLOCKING=1. \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_192141-shtac223/files/requirements.txt b/yolov5_model/wandb/run-20230226_192141-shtac223/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192141-shtac223/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_192141-shtac223/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_192141-shtac223/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..232aae1a4fbefe72baf8566eb89bd093366663df --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192141-shtac223/files/wandb-metadata.json @@ -0,0 +1,37 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-27T01:22:11.182088", + "startedAt": "2023-02-27T01:21:41.103005", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 8, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "16", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt", + "--workers", + "40" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_192141-shtac223/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_192141-shtac223/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192141-shtac223/files/wandb-summary.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_192141-shtac223/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_192141-shtac223/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..a560af056a13f8090bde17a86ae0d39d573d0e7e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192141-shtac223/logs/debug-internal.log @@ -0,0 +1,43 @@ +2023-02-26 19:21:49,468 INFO MainThread:2859 [internal.py:wandb_internal():90] W&B internal server running at pid: 2859, started at: 2023-02-26 19:21:49.423799 +2023-02-26 19:21:49,476 INFO WriterThread:2859 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/run-shtac223.wandb +2023-02-26 19:21:49,481 DEBUG SenderThread:2859 [sender.py:send():232] send: header +2023-02-26 19:21:49,481 DEBUG SenderThread:2859 [sender.py:send():232] send: run +2023-02-26 19:21:49,491 INFO SenderThread:2859 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/shtac223 +2023-02-26 19:21:49,810 DEBUG HandlerThread:2859 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 19:21:49,823 INFO SenderThread:2859 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files +2023-02-26 19:21:49,823 INFO SenderThread:2859 [sender.py:_start_run_threads():811] run started: shtac223 with start time 1677460901 +2023-02-26 19:21:49,823 DEBUG SenderThread:2859 [sender.py:send():232] send: summary +2023-02-26 19:21:49,824 INFO SenderThread:2859 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:21:49,825 DEBUG SenderThread:2859 [sender.py:send_request():246] send_request: check_version +2023-02-26 19:21:49,909 DEBUG HandlerThread:2859 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 19:21:59,045 INFO Thread-7 :2859 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files/wandb-summary.json +2023-02-26 19:21:59,046 INFO Thread-7 :2859 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files/output.log +2023-02-26 19:22:00,044 INFO Thread-7 :2859 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files/output.log +2023-02-26 19:22:02,096 INFO Thread-7 :2859 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files/output.log +2023-02-26 19:22:05,408 WARNING MainThread:2859 [internal.py:wandb_internal():153] Internal process interrupt: 1 +2023-02-26 19:22:07,623 WARNING MainThread:2859 [internal.py:is_dead():387] Internal process exiting, parent pid 253110 disappeared +2023-02-26 19:22:07,623 ERROR MainThread:2859 [internal.py:wandb_internal():149] Internal process shutdown. +2023-02-26 19:22:08,450 INFO SenderThread:2859 [sender.py:finish():1106] shutting down sender +2023-02-26 19:22:08,451 INFO WriterThread:2859 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/run-shtac223.wandb +2023-02-26 19:22:08,451 INFO SenderThread:2859 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 19:22:09,452 INFO SenderThread:2859 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files +2023-02-26 19:22:09,458 INFO SenderThread:2859 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files/output.log output.log +2023-02-26 19:22:09,458 INFO SenderThread:2859 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files/wandb-summary.json wandb-summary.json +2023-02-26 19:22:09,459 INFO SenderThread:2859 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files/config.yaml config.yaml +2023-02-26 19:22:09,465 INFO SenderThread:2859 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 19:22:09,469 INFO SenderThread:2859 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 19:22:10,199 INFO Thread-11 :2859 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files/wandb-summary.json +2023-02-26 19:22:10,208 INFO Thread-12 :2859 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files/config.yaml +2023-02-26 19:22:10,329 INFO Thread-10 :2859 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/files/output.log +2023-02-26 19:22:11,181 DEBUG HandlerThread:2859 [meta.py:__init__():35] meta init +2023-02-26 19:22:11,182 DEBUG HandlerThread:2859 [meta.py:__init__():49] meta init done +2023-02-26 19:22:11,182 DEBUG HandlerThread:2859 [meta.py:probe():209] probe +2023-02-26 19:22:11,191 DEBUG HandlerThread:2859 [meta.py:_setup_git():199] setup git +2023-02-26 19:22:11,366 DEBUG HandlerThread:2859 [meta.py:_setup_git():206] setup git done +2023-02-26 19:22:11,366 DEBUG HandlerThread:2859 [meta.py:_save_pip():53] save pip +2023-02-26 19:22:11,371 DEBUG HandlerThread:2859 [meta.py:_save_pip():67] save pip done +2023-02-26 19:22:11,371 DEBUG HandlerThread:2859 [meta.py:_save_conda():74] save conda +2023-02-26 19:22:19,003 DEBUG HandlerThread:2859 [meta.py:_save_conda():84] save conda done +2023-02-26 19:22:19,003 DEBUG HandlerThread:2859 [meta.py:probe():247] probe done +2023-02-26 19:22:19,051 INFO HandlerThread:2859 [handler.py:finish():806] shutting down handler +2023-02-26 19:22:19,054 INFO MainThread:2859 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_192141-shtac223/logs/debug.log b/yolov5_model/wandb/run-20230226_192141-shtac223/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..d9047fdee581f14eb1ae80a4a71f023e477cae54 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192141-shtac223/logs/debug.log @@ -0,0 +1,28 @@ +2023-02-26 19:21:41,174 INFO MainThread:253110 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 19:21:41,175 INFO MainThread:253110 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 19:21:41,175 INFO MainThread:253110 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 19:21:41,175 INFO MainThread:253110 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 19:21:41,175 INFO MainThread:253110 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 19:21:41,175 INFO MainThread:253110 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/logs/debug.log +2023-02-26 19:21:41,175 INFO MainThread:253110 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192141-shtac223/logs/debug-internal.log +2023-02-26 19:21:41,175 INFO MainThread:253110 [wandb_init.py:init():471] calling init triggers +2023-02-26 19:21:41,177 INFO MainThread:253110 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': 16, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 40, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp13'} +2023-02-26 19:21:41,177 INFO MainThread:253110 [wandb_init.py:init():524] starting backend +2023-02-26 19:21:41,177 INFO MainThread:253110 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 19:21:41,223 INFO MainThread:253110 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 19:21:41,244 INFO MainThread:253110 [backend.py:ensure_launched():222] started backend process with pid: 2859 +2023-02-26 19:21:41,246 INFO MainThread:253110 [wandb_init.py:init():533] backend started and connected +2023-02-26 19:21:41,254 INFO MainThread:253110 [wandb_init.py:init():597] updated telemetry +2023-02-26 19:21:41,319 INFO MainThread:253110 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 19:21:49,794 INFO MainThread:253110 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 19:21:49,905 INFO MainThread:253110 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 19:21:49,905 INFO MainThread:253110 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 19:21:55,112 INFO MainThread:253110 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 19:21:55,138 INFO MainThread:253110 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 19:21:55,140 INFO MainThread:253110 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 19:21:55,154 INFO MainThread:253110 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 19:21:55,154 INFO MainThread:253110 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 19:21:58,594 INFO MainThread:253110 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 1 +2023-02-26 19:21:58,598 INFO MainThread:253110 [wandb_run.py:_restore():1838] restore diff --git a/yolov5_model/wandb/run-20230226_192141-shtac223/run-shtac223.wandb b/yolov5_model/wandb/run-20230226_192141-shtac223/run-shtac223.wandb new file mode 100644 index 0000000000000000000000000000000000000000..1023802060a965c6237367c668b68cd352866804 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192141-shtac223/run-shtac223.wandb differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_192253-294etqct/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192253-294etqct/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/config.yaml b/yolov5_model/wandb/run-20230226_192253-294etqct/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d27ad7421c969ea61c8add6e657682f80d2d061e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192253-294etqct/files/config.yaml @@ -0,0 +1,177 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677460973 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 2 + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 16 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 30 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp14 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 40 diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c0a2e51387052ffebe9c1e5786f4a9007b751f6 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Labels_0_86483f0d36733e5da8e0.jpg b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Labels_0_86483f0d36733e5da8e0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..377708dc9d6775b655f6cc29def3941cced5cc0e Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Labels_0_86483f0d36733e5da8e0.jpg differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..148344f8fbc5ff6b3dfd16674b21789c5e7b4593 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_424a5cb76a2816c2809d.jpg b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_424a5cb76a2816c2809d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..705ac06d8f923ce19ccbaabda5566763faffa7ac Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_424a5cb76a2816c2809d.jpg differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33f4363a18b0a13281628bd60da6bc62e3cfcdff Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_0c73d072170afc8cc076.png b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_0c73d072170afc8cc076.png new file mode 100644 index 0000000000000000000000000000000000000000..e486908bf06e41c15b769c829f861e1be326310f Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_0c73d072170afc8cc076.png differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_1919cd7ca3699dbfdb9c.png b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_1919cd7ca3699dbfdb9c.png new file mode 100644 index 0000000000000000000000000000000000000000..850b5a86a6d7f348a122e435f25f07c8922076b2 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_1919cd7ca3699dbfdb9c.png differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_6b35553e60a9a47a223a.png b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_6b35553e60a9a47a223a.png new file mode 100644 index 0000000000000000000000000000000000000000..66d417da673671addc64708247ba5cb70debeee1 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_6b35553e60a9a47a223a.png differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_6e3c03e95f926739a83f.png b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_6e3c03e95f926739a83f.png new file mode 100644 index 0000000000000000000000000000000000000000..5224eb12f655f4b982f6bab3f22bf7d18b259fef Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_6e3c03e95f926739a83f.png differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_eb2cf95fc60deb852d4c.png b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_eb2cf95fc60deb852d4c.png new file mode 100644 index 0000000000000000000000000000000000000000..27814bcc0386125d50fe02a8edfe93f696d8d1ab Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_eb2cf95fc60deb852d4c.png differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_f4cd8dcfc503f4e0e92a.png b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_f4cd8dcfc503f4e0e92a.png new file mode 100644 index 0000000000000000000000000000000000000000..a4e04f0cb635ef4c5c65dba2cb611eda9746dfe3 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_f4cd8dcfc503f4e0e92a.png differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_11f0e2769a75856f91d5.jpg b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_11f0e2769a75856f91d5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f9f4a0b9a9c03d67e90ca128885b9dd79595403 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_11f0e2769a75856f91d5.jpg differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_2df4e1249b9bd4fda40e.jpg b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_2df4e1249b9bd4fda40e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..79b1cf3325b97def8b3b9c3acb339760cc9d2966 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_2df4e1249b9bd4fda40e.jpg differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_5a21eed7e48c71fdef66.jpg b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_5a21eed7e48c71fdef66.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1d52f50bcb3172947b4010866386cf6efa99980 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_5a21eed7e48c71fdef66.jpg differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_5b6c0b940a45c887546f.jpg b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_5b6c0b940a45c887546f.jpg new file mode 100644 index 0000000000000000000000000000000000000000..113251e3213eae288650f49937e5121917d5c658 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_5b6c0b940a45c887546f.jpg differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_73879ae5c6da6dbad3d9.jpg b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_73879ae5c6da6dbad3d9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94ede294ae29830b307ca9a1a5e451ac098cc46f Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_73879ae5c6da6dbad3d9.jpg differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_e404c2d565b3a61e5a5b.jpg b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_e404c2d565b3a61e5a5b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1d8f08cbc272846354768353722e45298e93704 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_e404c2d565b3a61e5a5b.jpg differ diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log b/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..9b3ded9f8f5b219d96b99f445207b5c6aeccfc59 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log @@ -0,0 +1,931 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Transferred 475/481 items from yolov5m.pt +[34m[1mAMP: [39m[22mchecks passed ✅ +[34m[1moptimizer:[39m[22m SGD(lr=0.01) with parameter groups 79 weight(decay=0.0), 82 weight(decay=0.0005), 82 bias +WARNING âš ï¸ DP not recommended, use torch.distributed.run for best DDP Multi-GPU results. +See Multi-GPU Tutorial at https://github.com/ultralytics/yolov5/issues/475 to get started. +[34m[1mtrain: [39m[22mScanning /projects/akhot2/group-01-phys371-sp2023/crop/data/train/labels... 1001 images, 163 backgrounds, 0 corrupt: 100%|████ +[34m[1mtrain: [39m[22mNew cache created: /projects/akhot2/group-01-phys371-sp2023/crop/data/train/labels.cache +[34m[1mval: [39m[22mScanning /projects/akhot2/group-01-phys371-sp2023/crop/data/test/labels... 249 images, 39 backgrounds, 0 corrupt: 100%|█████████ +[34m[1mval: [39m[22mNew cache created: /projects/akhot2/group-01-phys371-sp2023/crop/data/test/labels.cache +[34m[1mAutoAnchor: [39m[22m5.94 anchors/target, 1.000 Best Possible Recall (BPR). Current anchors are a good fit to dataset ✅ +Plotting labels to runs/train/exp14/labels.jpg... +Image sizes 1280 train, 1280 val +Using 16 dataloader workers +Logging results to [1mruns/train/exp14 +Starting training for 30 epochs... + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + 0/29 13G 0.08853 0.05382 0 35 1280: 100%|██████████| 63/63 [01:01<00:00, 1.02it/s] + + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:06<00:00, 1.32it/ + all 249 604 0.364 0.696 0.43 0.128 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1/29 16G 0.06939 0.0265 0 36 1280: 100%|██████████| 63/63 [02:10<00:00, 2.06s/it] + + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:05<00:00, 1.43it/ + all 249 604 0.294 0.942 0.295 0.101 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2/29 16G 0.06626 0.02028 0 33 1280: 100%|██████████| 63/63 [01:22<00:00, 1.31s/it] + + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:04<00:00, 1.63it/ + all 249 604 0.386 0.762 0.4 0.116 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + 3/29 16G 0.0584 0.01806 0 54 1280: 100%|██████████| 63/63 [00:59<00:00, 1.05it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.25it/ + all 249 604 0.448 0.808 0.593 0.268 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4/29 16G 0.05048 0.01615 0 45 1280: 100%|██████████| 63/63 [01:03<00:00, 1.01s/it] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.40it/ + all 249 604 0.876 0.97 0.933 0.389 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5/29 16G 0.04408 0.01462 0 25 1280: 100%|██████████| 63/63 [01:01<00:00, 1.02it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.52it/ + all 249 604 0.993 0.995 0.994 0.53 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + 6/29 16G 0.03883 0.01355 0 47 1280: 100%|██████████| 63/63 [01:01<00:00, 1.02it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 2.93it/ + all 249 604 0.999 0.997 0.995 0.683 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + 7/29 16G 0.03522 0.01349 0 33 1280: 100%|██████████| 63/63 [01:35<00:00, 1.52s/it] + + + + + + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:29<00:00, 3.63s/i + all 249 604 0.985 0.997 0.994 0.558 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 8/29 16G 0.03303 0.01277 0 57 1280: 100%|██████████| 63/63 [01:41<00:00, 1.60s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.38it/ + all 249 604 1 0.996 0.995 0.599 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + + + 9/29 16G 0.03076 0.01208 0 30 1280: 100%|██████████| 63/63 [01:09<00:00, 1.10s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.23it/ + all 249 604 1 0.997 0.995 0.682 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + 10/29 16G 0.02793 0.01174 0 33 1280: 100%|██████████| 63/63 [00:59<00:00, 1.06it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.84it/ + all 249 604 1 0.997 0.995 0.697 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + 11/29 16G 0.02742 0.01086 0 69 1280: 14%|█■| 9/63 [00:02<00:12, 4.24it/s] + 11/29 16G 0.02813 0.0108 0 44 1280: 21%|██ | 13/63 [00:04<00:17, 2.79it/s] + 11/29 16G 0.02796 0.01108 0 60 1280: 29%|██▊ | 18/63 [00:13<00:34, 1.32it/s] + 11/29 16G 0.02805 0.01105 0 58 1280: 30%|███ | 19/63 [00:15<00:48, 1.09s/it] + 11/29 16G 0.02779 0.01122 0 73 1280: 35%|███■| 22/63 [00:17<00:30, 1.34it/s] + 11/29 16G 0.02737 0.01107 0 63 1280: 41%|████■| 26/63 [00:19<00:22, 1.63it/s] + 11/29 16G 0.02732 0.01119 0 68 1280: 46%|████▌ | 29/63 [00:21<00:18, 1.82it/s] + 11/29 16G 0.0274 0.01111 0 68 1280: 54%|█████■| 34/63 [00:30<00:23, 1.24it/s] + 11/29 16G 0.02742 0.01112 0 69 1280: 56%|█████▌ | 35/63 [00:31<00:24, 1.13it/s] + 11/29 16G 0.0273 0.01105 0 64 1280: 62%|██████■| 39/63 [00:32<00:10, 2.24it/s] + 11/29 16G 0.02715 0.01102 0 60 1280: 67%|██████▋ | 42/63 [00:35<00:11, 1.81it/s] + 11/29 16G 0.02709 0.01106 0 76 1280: 71%|███████■| 45/63 [00:37<00:10, 1.72it/s] + 11/29 16G 0.02701 0.01104 0 63 1280: 79%|███████▉ | 50/63 [00:46<00:10, 1.25it/s] + 11/29 16G 0.02696 0.01096 0 62 1280: 83%|████████▎ | 52/63 [00:48<00:10, 1.08it/s] + 11/29 16G 0.02702 0.01095 0 49 1280: 87%|████████▋ | 55/63 [00:48<00:03, 2.31it/s] + 11/29 16G 0.02698 0.01085 0 52 1280: 92%|█████████â–| 58/63 [00:51<00:03, 1.62it/s] + 11/29 16G 0.02688 0.01083 0 62 1280: 97%|█████████▋| 61/63 [00:53<00:00, 2.04it/s] + 11/29 16G 0.0269 0.01084 0 68 1280: 98%|█████████▊| 62/63 [01:08<00:04, 4.83s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 11/29 16G 0.02689 0.01086 0 40 1280: 100%|██████████| 63/63 [01:10<00:00, 1.13s/it] + 12/29 16G 0.02612 0.01053 0 68 1280: 44%|████■| 28/63 [00:28<00:20, 1.67it/s] + 12/29 16G 0.02607 0.01052 0 71 1280: 46%|████▌ | 29/63 [00:29<00:24, 1.38it/s] + 12/29 16G 0.02595 0.01043 0 53 1280: 52%|█████■| 33/63 [00:33<00:21, 1.36it/s] + 12/29 16G 0.02595 0.01052 0 79 1280: 54%|█████■| 34/63 [00:33<00:18, 1.55it/s] + 12/29 16G 0.02602 0.01039 0 30 1280: 57%|█████▋ | 36/63 [00:37<00:32, 1.21s/it] + 12/29 16G 0.02595 0.01043 0 74 1280: 59%|█████▊ | 37/63 [00:40<00:42, 1.62s/it] + 12/29 16G 0.02589 0.01043 0 61 1280: 60%|██████ | 38/63 [00:44<01:01, 2.46s/it] + 12/29 16G 0.0259 0.01048 0 75 1280: 62%|██████■| 39/63 [00:50<01:23, 3.50s/it] + 12/29 16G 0.02585 0.01051 0 62 1280: 68%|██████▊ | 43/63 [00:53<00:25, 1.26s/it] + 12/29 16G 0.02578 0.01041 0 63 1280: 76%|███████▌ | 48/63 [00:56<00:10, 1.48it/s] + 12/29 16G 0.0258 0.0104 0 51 1280: 78%|███████▊ | 49/63 [00:57<00:10, 1.40it/s] + 12/29 16G 0.02581 0.01028 0 45 1280: 87%|████████▋ | 55/63 [01:00<00:03, 2.38it/s] + 12/29 16G 0.02584 0.01031 0 77 1280: 89%|████████▉ | 56/63 [01:02<00:06, 1.13it/s] + 12/29 16G 0.02592 0.0105 0 72 1280: 95%|█████████▌| 60/63 [01:04<00:01, 1.92it/s] + 12/29 16G 0.02589 0.01056 0 44 1280: 100%|██████████| 63/63 [01:05<00:00, 1.04s/it] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 2.78it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 2.78it/ + 13/29 16G 0.02321 0.01089 0 83 1280: 10%|â–‰ | 6/63 [00:03<00:24, 2.35it/s] 2.78it/ + 13/29 16G 0.0248 0.01069 0 57 1280: 19%|█▉ | 12/63 [00:04<00:12, 4.23it/s]2.78it/ + 13/29 16G 0.02446 0.01058 0 55 1280: 21%|██ | 13/63 [00:07<00:53, 1.08s/it]2.78it/ + 13/29 16G 0.0247 0.01041 0 68 1280: 25%|██▌ | 16/63 [00:08<00:28, 1.63it/s]2.78it/ + 13/29 16G 0.02473 0.01037 0 57 1280: 30%|███ | 19/63 [00:10<00:23, 1.85it/s]2.78it/ + 13/29 16G 0.0247 0.01046 0 78 1280: 32%|███■| 20/63 [00:14<01:08, 1.58s/it]2.78it/ + 13/29 16G 0.02482 0.01035 0 46 1280: 38%|███▊ | 24/63 [00:17<00:31, 1.26it/s]2.78it/ + 13/29 16G 0.02468 0.01039 0 77 1280: 40%|███▉ | 25/63 [00:17<00:25, 1.50it/s]2.78it/ + 13/29 16G 0.02482 0.01038 0 73 1280: 44%|████■| 28/63 [00:21<00:28, 1.22it/s]2.78it/ + 13/29 16G 0.02473 0.01011 0 41 1280: 51%|█████ | 32/63 [00:25<00:27, 1.14it/s]2.78it/ + 13/29 16G 0.02471 0.01024 0 63 1280: 56%|█████▌ | 35/63 [00:29<00:24, 1.13it/s]2.78it/ + 13/29 16G 0.02473 0.01014 0 43 1280: 57%|█████▋ | 36/63 [00:30<00:25, 1.06it/s]2.78it/ + 13/29 16G 0.02487 0.01013 0 52 1280: 59%|█████▊ | 37/63 [00:33<00:39, 1.52s/it]2.78it/ + 13/29 16G 0.02486 0.01029 0 70 1280: 65%|██████▌ | 41/63 [00:35<00:15, 1.43it/s]2.78it/ + 13/29 16G 0.02488 0.01031 0 88 1280: 70%|██████▉ | 44/63 [00:37<00:12, 1.55it/s]2.78it/ + 13/29 16G 0.02482 0.01039 0 55 1280: 76%|███████▌ | 48/63 [00:43<00:11, 1.31it/s]2.78it/ + 13/29 16G 0.02471 0.01041 0 81 1280: 79%|███████▉ | 50/63 [00:46<00:16, 1.23s/it]2.78it/ + 13/29 16G 0.0246 0.01029 0 47 1280: 84%|████████■| 53/63 [00:49<00:10, 1.02s/it]2.78it/ + 13/29 16G 0.02471 0.01025 0 65 1280: 92%|█████████â–| 58/63 [00:53<00:03, 1.44it/s]2.78it/ + 13/29 16G 0.02457 0.01023 0 73 1280: 95%|█████████▌| 60/63 [00:54<00:01, 1.93it/s]2.78it/ + 13/29 16G 0.0245 0.01029 0 43 1280: 100%|██████████| 63/63 [00:59<00:00, 1.06it/s]2.78it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.41it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.41it/ + 14/29 16G 0.02505 0.01031 0 67 1280: 10%|â–‰ | 6/63 [00:03<00:19, 2.90it/s] 3.41it/ + 14/29 16G 0.02403 0.01023 0 69 1280: 14%|█■| 9/63 [00:07<00:46, 1.16it/s] 3.41it/ + 14/29 16G 0.02395 0.01043 0 80 1280: 21%|██ | 13/63 [00:08<00:22, 2.26it/s]3.41it/ + 14/29 16G 0.02397 0.0105 0 71 1280: 25%|██▌ | 16/63 [00:13<00:43, 1.09it/s]3.41it/ + 14/29 16G 0.02397 0.01053 0 70 1280: 27%|██▋ | 17/63 [00:13<00:32, 1.43it/s]3.41it/ + 14/29 16G 0.024 0.0105 0 70 1280: 32%|███■| 20/63 [00:16<00:28, 1.51it/s]3.41it/ + 14/29 16G 0.0241 0.0106 0 71 1280: 33%|███▎ | 21/63 [00:19<01:00, 1.44s/it]3.41it/ + 14/29 16G 0.02414 0.01055 0 59 1280: 35%|███■| 22/63 [00:20<00:53, 1.30s/it]3.41it/ + 14/29 16G 0.02374 0.01046 0 64 1280: 41%|████■| 26/63 [00:23<00:25, 1.47it/s]3.41it/ + 14/29 16G 0.02388 0.01042 0 46 1280: 46%|████▌ | 29/63 [00:26<00:24, 1.39it/s]3.41it/ + 14/29 16G 0.02391 0.01031 0 67 1280: 52%|█████■| 33/63 [00:29<00:16, 1.83it/s]3.41it/ + 14/29 16G 0.02372 0.01026 0 62 1280: 59%|█████▊ | 37/63 [00:35<00:22, 1.14it/s]3.41it/ + 14/29 16G 0.02376 0.01028 0 67 1280: 60%|██████ | 38/63 [00:37<00:29, 1.20s/it]3.41it/ + 14/29 16G 0.02381 0.01024 0 53 1280: 62%|██████■| 39/63 [00:50<01:57, 4.90s/it]3.41it/ + 14/29 16G 0.02378 0.01019 0 55 1280: 63%|██████▎ | 40/63 [00:58<02:16, 5.92s/it]3.41it/ + 14/29 16G 0.02372 0.01019 0 72 1280: 65%|██████▌ | 41/63 [01:04<02:05, 5.71s/it]3.41it/ + 14/29 16G 0.02363 0.01013 0 47 1280: 67%|██████▋ | 42/63 [01:13<02:24, 6.88s/it]3.41it/ + 14/29 16G 0.02357 0.0101 0 60 1280: 68%|██████▊ | 43/63 [01:19<02:11, 6.58s/it]3.41it/ + 14/29 16G 0.02359 0.01018 0 87 1280: 70%|██████▉ | 44/63 [01:26<02:07, 6.69s/it]3.41it/ + 14/29 16G 0.02359 0.01022 0 74 1280: 71%|███████■| 45/63 [01:33<02:03, 6.85s/it]3.41it/ + 14/29 16G 0.02358 0.01022 0 65 1280: 73%|███████▎ | 46/63 [01:39<01:50, 6.48s/it]3.41it/ + 14/29 16G 0.02359 0.01026 0 81 1280: 75%|███████■| 47/63 [01:44<01:35, 5.99s/it]3.41it/ + 14/29 16G 0.02356 0.01021 0 51 1280: 76%|███████▌ | 48/63 [01:48<01:20, 5.37s/it]3.41it/ + 14/29 16G 0.0235 0.0102 0 55 1280: 78%|███████▊ | 49/63 [01:55<01:22, 5.86s/it]3.41it/ + 14/29 16G 0.02352 0.01021 0 68 1280: 79%|███████▉ | 50/63 [01:59<01:10, 5.39s/it]3.41it/ + 14/29 16G 0.02344 0.01021 0 64 1280: 81%|████████ | 51/63 [02:04<01:04, 5.40s/it]3.41it/ + 14/29 16G 0.02344 0.0102 0 63 1280: 83%|████████▎ | 52/63 [02:09<00:56, 5.10s/it]3.41it/ + 14/29 16G 0.02345 0.01018 0 60 1280: 84%|████████■| 53/63 [02:11<00:42, 4.25s/it]3.41it/ + 14/29 16G 0.02348 0.01023 0 59 1280: 87%|████████▋ | 55/63 [02:13<00:20, 2.62s/it]3.41it/ + 14/29 16G 0.02347 0.01023 0 64 1280: 89%|████████▉ | 56/63 [02:17<00:21, 3.06s/it]3.41it/ + 14/29 16G 0.02347 0.01022 0 68 1280: 90%|█████████ | 57/63 [02:24<00:24, 4.12s/it]3.41it/ + 14/29 16G 0.02344 0.01028 0 89 1280: 92%|█████████â–| 58/63 [02:28<00:21, 4.20s/it]3.41it/ + 14/29 16G 0.02343 0.01034 0 52 1280: 98%|█████████▊| 62/63 [02:32<00:01, 1.49s/it]3.41it/ + 14/29 16G 0.02345 0.01038 0 40 1280: 100%|██████████| 63/63 [02:33<00:00, 2.43s/it]3.41it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.62it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.62it/ + 15/29 16G 0.02209 0.009758 0 65 1280: 6%|â–‹ | 4/63 [00:04<00:52, 1.11it/s] 2.62it/ + 15/29 16G 0.02187 0.01007 0 80 1280: 8%|â–Š | 5/63 [00:06<01:02, 1.08s/it] 2.62it/ + 15/29 16G 0.02214 0.01061 0 60 1280: 13%|█▎ | 8/63 [00:08<00:39, 1.41it/s] 2.62it/ + 15/29 16G 0.02156 0.009993 0 43 1280: 19%|█▉ | 12/63 [00:10<00:26, 1.96it/s]2.62it/ + 15/29 16G 0.02107 0.01002 0 66 1280: 35%|███■| 22/63 [00:12<00:08, 4.70it/s]2.62it/ + 15/29 16G 0.02109 0.009933 0 72 1280: 43%|████▎ | 27/63 [00:14<00:11, 3.18it/s]2.62it/ + 15/29 16G 0.02106 0.01002 0 94 1280: 51%|█████ | 32/63 [00:15<00:06, 4.69it/s]2.62it/ + 15/29 16G 0.02103 0.01003 0 72 1280: 52%|█████■| 33/63 [00:18<00:30, 1.00s/it]2.62it/ + 15/29 16G 0.02102 0.009965 0 51 1280: 54%|█████■| 34/63 [00:20<00:39, 1.37s/it]2.62it/ + 15/29 16G 0.02101 0.01 0 61 1280: 59%|█████▊ | 37/63 [00:21<00:19, 1.31it/s]2.62it/ + 15/29 16G 0.02098 0.009956 0 56 1280: 62%|██████■| 39/63 [00:24<00:22, 1.08it/s]2.62it/ + 15/29 16G 0.02084 0.009905 0 55 1280: 68%|██████▊ | 43/63 [00:26<00:13, 1.51it/s]2.62it/ + 15/29 16G 0.02082 0.009925 0 76 1280: 70%|██████▉ | 44/63 [00:26<00:10, 1.89it/s]2.62it/ + 15/29 16G 0.02084 0.009811 0 46 1280: 73%|███████▎ | 46/63 [00:30<00:18, 1.10s/it]2.62it/ + 15/29 16G 0.02087 0.009733 0 54 1280: 76%|███████▌ | 48/63 [00:31<00:09, 1.55it/s]2.62it/ + 15/29 16G 0.02085 0.009722 0 65 1280: 78%|███████▊ | 49/63 [00:33<00:18, 1.32s/it]2.62it/ + 15/29 16G 0.02091 0.009689 0 56 1280: 84%|████████■| 53/63 [00:38<00:09, 1.04it/s]2.62it/ + 15/29 16G 0.02089 0.009696 0 87 1280: 89%|████████▉ | 56/63 [00:40<00:05, 1.32it/s]2.62it/ + 15/29 16G 0.02095 0.009725 0 75 1280: 92%|█████████â–| 58/63 [00:41<00:03, 1.60it/s]2.62it/ + 15/29 16G 0.02097 0.009696 0 57 1280: 95%|█████████▌| 60/63 [00:43<00:02, 1.40it/s]2.62it/ + 15/29 16G 0.02096 0.009698 0 71 1280: 97%|█████████▋| 61/63 [00:46<00:03, 1.53s/it]2.62it/ + 15/29 16G 0.02109 0.009671 0 26 1280: 100%|██████████| 63/63 [00:47<00:00, 1.33it/s]2.62it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.88it/ + 16/29 16G 0.0208 0.009093 0 64 1280: 11%|â–ˆ | 7/63 [00:05<00:38, 1.45it/s] 3.88it/ + 16/29 16G 0.02126 0.009342 0 70 1280: 17%|█▋ | 11/63 [00:09<00:34, 1.49it/s]3.88it/ + 16/29 16G 0.02066 0.009322 0 52 1280: 21%|██ | 13/63 [00:09<00:25, 2.00it/s]3.88it/ + 16/29 16G 0.02091 0.009311 0 61 1280: 22%|██■| 14/63 [00:12<00:49, 1.01s/it]3.88it/ + 16/29 16G 0.02131 0.009391 0 80 1280: 27%|██▋ | 17/63 [00:14<00:33, 1.38it/s]3.88it/ + 16/29 16G 0.02115 0.009353 0 61 1280: 29%|██▊ | 18/63 [00:16<00:56, 1.26s/it]3.88it/ + 16/29 16G 0.02083 0.009212 0 65 1280: 35%|███■| 22/63 [00:21<00:35, 1.16it/s]3.88it/ + 16/29 16G 0.02082 0.009252 0 54 1280: 37%|███▋ | 23/63 [00:22<00:40, 1.01s/it]3.88it/ + 16/29 16G 0.02088 0.009337 0 63 1280: 43%|████▎ | 27/63 [00:24<00:18, 1.91it/s]3.88it/ + 16/29 16G 0.02073 0.009249 0 51 1280: 44%|████■| 28/63 [00:27<00:41, 1.18s/it]3.88it/ + 16/29 16G 0.02074 0.009159 0 62 1280: 48%|████▊ | 30/63 [00:28<00:28, 1.16it/s]3.88it/ + 16/29 16G 0.02079 0.009215 0 42 1280: 52%|█████■| 33/63 [00:30<00:19, 1.53it/s]3.88it/ + 16/29 16G 0.02076 0.009211 0 65 1280: 54%|█████■| 34/63 [00:34<00:52, 1.82s/it]3.88it/ + 16/29 16G 0.02076 0.009152 0 46 1280: 56%|█████▌ | 35/63 [00:36<00:51, 1.83s/it]3.88it/ + 16/29 16G 0.02073 0.00933 0 64 1280: 62%|██████■| 39/63 [00:38<00:18, 1.33it/s]3.88it/ + 16/29 16G 0.02075 0.009359 0 77 1280: 65%|██████▌ | 41/63 [00:41<00:21, 1.04it/s]3.88it/ + 16/29 16G 0.02079 0.009269 0 55 1280: 71%|███████■| 45/63 [00:42<00:10, 1.77it/s]3.88it/ + 16/29 16G 0.02078 0.009272 0 72 1280: 73%|███████▎ | 46/63 [00:44<00:13, 1.29it/s]3.88it/ + 16/29 16G 0.0207 0.009357 0 96 1280: 78%|███████▊ | 49/63 [00:47<00:10, 1.30it/s]3.88it/ + 16/29 16G 0.02073 0.009406 0 83 1280: 79%|███████▉ | 50/63 [00:49<00:17, 1.33s/it]3.88it/ + 16/29 16G 0.02078 0.009351 0 41 1280: 84%|████████■| 53/63 [00:53<00:11, 1.10s/it]3.88it/ + 16/29 16G 0.02071 0.009314 0 67 1280: 87%|████████▋ | 55/63 [00:54<00:06, 1.25it/s]3.88it/ + 16/29 16G 0.02079 0.009383 0 79 1280: 94%|█████████▎| 59/63 [00:56<00:02, 1.97it/s]3.88it/ + 16/29 16G 0.02086 0.009393 0 55 1280: 97%|█████████▋| 61/63 [00:59<00:01, 1.27it/s]3.88it/ + 16/29 16G 0.02088 0.009402 0 34 1280: 100%|██████████| 63/63 [01:01<00:00, 1.02it/s]3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.59it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.59it/ + 17/29 16G 0.01874 0.009063 0 78 1280: 13%|█▎ | 8/63 [00:06<00:34, 1.61it/s] 3.59it/ + 17/29 16G 0.01879 0.009079 0 70 1280: 19%|█▉ | 12/63 [00:07<00:20, 2.50it/s]3.59it/ + 17/29 16G 0.01861 0.008832 0 55 1280: 22%|██■| 14/63 [00:09<00:31, 1.54it/s]3.59it/ + 17/29 16G 0.0191 0.008973 0 66 1280: 29%|██▊ | 18/63 [00:13<00:27, 1.66it/s]3.59it/ + 17/29 16G 0.01919 0.008932 0 56 1280: 32%|███■| 20/63 [00:22<01:38, 2.29s/it]3.59it/ + 17/29 16G 0.01948 0.009062 0 61 1280: 38%|███▊ | 24/63 [00:24<00:30, 1.29it/s]3.59it/ + 17/29 16G 0.01938 0.008944 0 61 1280: 43%|████▎ | 27/63 [00:29<00:40, 1.12s/it]3.59it/ + 17/29 16G 0.01926 0.008885 0 64 1280: 51%|█████ | 32/63 [00:31<00:18, 1.63it/s]3.59it/ + 17/29 16G 0.01934 0.008886 0 63 1280: 54%|█████■| 34/63 [00:32<00:19, 1.46it/s]3.59it/ + 17/29 16G 0.01927 0.008822 0 71 1280: 60%|██████ | 38/63 [00:41<00:27, 1.08s/it]3.59it/ + 17/29 16G 0.01926 0.008905 0 62 1280: 63%|██████▎ | 40/63 [00:42<00:19, 1.17it/s]3.59it/ + 17/29 16G 0.01923 0.008873 0 57 1280: 65%|██████▌ | 41/63 [00:50<01:09, 3.17s/it]3.59it/ + 17/29 16G 0.01923 0.008822 0 45 1280: 75%|███████■| 47/63 [00:54<00:11, 1.34it/s]3.59it/ + 17/29 16G 0.01911 0.008799 0 61 1280: 79%|███████▉ | 50/63 [00:56<00:06, 1.95it/s]3.59it/ + 17/29 16G 0.01916 0.008826 0 80 1280: 81%|████████ | 51/63 [01:03<00:29, 2.45s/it]3.59it/ + 17/29 16G 0.01913 0.008812 0 69 1280: 86%|████████▌ | 54/63 [01:05<00:11, 1.23s/it]3.59it/ + 17/29 16G 0.01918 0.008919 0 54 1280: 92%|█████████â–| 58/63 [01:07<00:03, 1.58it/s]3.59it/ + 17/29 16G 0.01922 0.008897 0 51 1280: 94%|█████████▎| 59/63 [01:10<00:05, 1.32s/it]3.59it/ + 17/29 16G 0.01926 0.008908 0 67 1280: 98%|█████████▊| 62/63 [01:15<00:01, 1.36s/it]3.59it/ + 17/29 16G 0.01927 0.008899 0 31 1280: 100%|██████████| 63/63 [01:16<00:00, 1.21s/it]3.59it/ + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:02<00:08, 1.43s/i + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:05<00:10, 2.01s/i + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:07<00:01, 1.09it/ + Class Images Instances P R mAP50 mAP50-95: 88%|████████▊ | 7/8 [00:09<00:01, 1.19s/i + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:10<00:00, 1.35s/i + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:10<00:00, 1.35s/i + 18/29 16G 0.02293 0.01038 0 70 1280: 2%|â– | 1/63 [00:03<03:21, 3.25s/it] 1.35s/i + 18/29 16G 0.02147 0.009179 0 56 1280: 3%|â–Ž | 2/63 [00:08<04:14, 4.17s/it] 1.35s/i + 18/29 16G 0.0195 0.008506 0 67 1280: 8%|â–Š | 5/63 [00:14<02:01, 2.10s/it] 1.35s/i + 18/29 16G 0.01843 0.008233 0 59 1280: 11%|â–ˆ | 7/63 [00:14<01:05, 1.17s/it] 1.35s/i + 18/29 16G 0.01882 0.00874 0 61 1280: 14%|█■| 9/63 [00:18<01:12, 1.35s/it] 1.35s/i + 18/29 16G 0.01891 0.008737 0 62 1280: 17%|█▋ | 11/63 [00:20<01:04, 1.24s/it]1.35s/i + 18/29 16G 0.01889 0.008666 0 60 1280: 21%|██ | 13/63 [00:22<00:51, 1.02s/it]1.35s/i + 18/29 16G 0.01895 0.009119 0 71 1280: 30%|███ | 19/63 [00:24<00:20, 2.16it/s]1.35s/i + 18/29 16G 0.01914 0.009082 0 57 1280: 32%|███■| 20/63 [00:25<00:32, 1.34it/s]1.35s/i + 18/29 16G 0.01923 0.009105 0 60 1280: 33%|███▎ | 21/63 [00:28<00:50, 1.20s/it]1.35s/i + 18/29 16G 0.0194 0.009033 0 52 1280: 37%|███▋ | 23/63 [00:30<00:44, 1.12s/it]1.35s/i + 18/29 16G 0.01918 0.008954 0 59 1280: 41%|████■| 26/63 [00:32<00:32, 1.15it/s]1.35s/i + 18/29 16G 0.01917 0.008977 0 77 1280: 43%|████▎ | 27/63 [00:33<00:26, 1.36it/s]1.35s/i + 18/29 16G 0.01928 0.009011 0 79 1280: 48%|████▊ | 30/63 [00:35<00:25, 1.29it/s]1.35s/i + 18/29 16G 0.01923 0.009027 0 87 1280: 51%|█████ | 32/63 [00:38<00:30, 1.02it/s]1.35s/i + 18/29 16G 0.01918 0.008981 0 59 1280: 52%|█████■| 33/63 [00:39<00:33, 1.13s/it]1.35s/i + 18/29 16G 0.01913 0.008941 0 61 1280: 56%|█████▌ | 35/63 [00:41<00:29, 1.05s/it]1.35s/i + 18/29 16G 0.01917 0.008925 0 50 1280: 57%|█████▋ | 36/63 [00:44<00:43, 1.61s/it]1.35s/i + 18/29 16G 0.01912 0.008915 0 57 1280: 62%|██████■| 39/63 [00:46<00:26, 1.10s/it]1.35s/i + 18/29 16G 0.01907 0.008925 0 58 1280: 65%|██████▌ | 41/63 [00:49<00:25, 1.16s/it]1.35s/i + 18/29 16G 0.01902 0.009021 0 67 1280: 70%|██████▉ | 44/63 [00:51<00:15, 1.20it/s]1.35s/i + 18/29 16G 0.019 0.009052 0 88 1280: 75%|███████■| 47/63 [00:52<00:08, 1.82it/s]1.35s/i + 18/29 16G 0.01914 0.009143 0 97 1280: 78%|███████▊ | 49/63 [00:54<00:10, 1.34it/s]1.35s/i + 18/29 16G 0.01915 0.009214 0 79 1280: 81%|████████ | 51/63 [00:57<00:11, 1.02it/s]1.35s/i + 18/29 16G 0.01909 0.009165 0 45 1280: 83%|████████▎ | 52/63 [00:59<00:14, 1.27s/it]1.35s/i + 18/29 16G 0.01905 0.009153 0 61 1280: 84%|████████■| 53/63 [01:01<00:15, 1.56s/it]1.35s/i + 18/29 16G 0.01902 0.009216 0 85 1280: 87%|████████▋ | 55/63 [01:03<00:09, 1.18s/it]1.35s/i + 18/29 16G 0.01904 0.009236 0 85 1280: 89%|████████▉ | 56/63 [01:04<00:07, 1.12s/it]1.35s/i + 18/29 16G 0.01903 0.009196 0 69 1280: 92%|█████████â–| 58/63 [01:10<00:09, 1.91s/it]1.35s/i + 18/29 16G 0.01906 0.009194 0 61 1280: 94%|█████████▎| 59/63 [01:12<00:08, 2.19s/it]1.35s/i + 18/29 16G 0.01907 0.009148 0 47 1280: 95%|█████████▌| 60/63 [01:15<00:06, 2.20s/it]1.35s/i + 18/29 16G 0.01909 0.009157 0 64 1280: 97%|█████████▋| 61/63 [01:17<00:04, 2.32s/it]1.35s/i + 18/29 16G 0.0191 0.009148 0 69 1280: 98%|█████████▊| 62/63 [01:23<00:03, 3.41s/it]1.35s/i + 18/29 16G 0.01906 0.00911 0 29 1280: 100%|██████████| 63/63 [01:24<00:00, 1.35s/it]1.35s/i + Class Images Instances P R mAP50 mAP50-95: 62%|██████▎ | 5/8 [00:03<00:01, 1.76it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:04<00:00, 1.77it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:04<00:00, 1.77it/ + 19/29 16G 0.01849 0.00794 0 70 1280: 3%|â–Ž | 2/63 [00:03<01:43, 1.69s/it] 1.77it/ + 19/29 16G 0.0176 0.008228 0 75 1280: 6%|â–‹ | 4/63 [00:05<00:59, 1.00s/it] 1.77it/ + 19/29 16G 0.01842 0.008576 0 66 1280: 11%|â–ˆ | 7/63 [00:08<00:48, 1.16it/s] 1.77it/ + 19/29 16G 0.01829 0.009205 0 106 1280: 16%|█▌ | 10/63 [00:10<00:35, 1.49it/s]1.77it/ + 19/29 16G 0.01812 0.009178 0 69 1280: 17%|█▋ | 11/63 [00:12<00:58, 1.12s/it]1.77it/ + 19/29 16G 0.01812 0.009204 0 91 1280: 24%|██■| 15/63 [00:14<00:32, 1.49it/s]1.77it/ + 19/29 16G 0.01816 0.009088 0 54 1280: 25%|██▌ | 16/63 [00:17<00:59, 1.26s/it]1.77it/ + 19/29 16G 0.01811 0.009038 0 61 1280: 27%|██▋ | 17/63 [00:21<01:36, 2.10s/it]1.77it/ + 19/29 16G 0.01785 0.009025 0 67 1280: 33%|███▎ | 21/63 [00:27<00:53, 1.26s/it]1.77it/ + 19/29 16G 0.01798 0.009148 0 79 1280: 38%|███▊ | 24/63 [00:28<00:33, 1.18it/s]1.77it/ + 19/29 16G 0.018 0.009159 0 83 1280: 41%|████■| 26/63 [00:30<00:32, 1.13it/s]1.77it/ + 19/29 16G 0.01787 0.009243 0 73 1280: 48%|████▊ | 30/63 [00:32<00:20, 1.63it/s]1.77it/ + 19/29 16G 0.01797 0.009364 0 105 1280: 51%|█████ | 32/63 [00:33<00:15, 1.99it/s]1.77it/ + 19/29 16G 0.01791 0.009249 0 63 1280: 57%|█████▋ | 36/63 [00:36<00:15, 1.75it/s]1.77it/ + 19/29 16G 0.01789 0.009242 0 58 1280: 62%|██████■| 39/63 [00:38<00:12, 1.86it/s]1.77it/ + 19/29 16G 0.01781 0.009178 0 58 1280: 70%|██████▉ | 44/63 [00:40<00:08, 2.28it/s]1.77it/ + 19/29 16G 0.01783 0.009081 0 69 1280: 78%|███████▊ | 49/63 [00:42<00:05, 2.78it/s]1.77it/ + 19/29 16G 0.01774 0.009107 0 80 1280: 83%|████████▎ | 52/63 [00:44<00:05, 1.85it/s]1.77it/ + 19/29 16G 0.01775 0.009043 0 64 1280: 86%|████████▌ | 54/63 [00:46<00:06, 1.45it/s]1.77it/ + 19/29 16G 0.01776 0.008979 0 70 1280: 89%|████████▉ | 56/63 [00:48<00:05, 1.21it/s]1.77it/ + 19/29 16G 0.01781 0.008976 0 55 1280: 95%|█████████▌| 60/63 [00:50<00:02, 1.45it/s]1.77it/ + 19/29 16G 0.0178 0.008958 0 76 1280: 98%|█████████▊| 62/63 [00:53<00:00, 1.21it/s]1.77it/ + 19/29 16G 0.01783 0.008928 0 27 1280: 100%|██████████| 63/63 [00:53<00:00, 1.18it/s]1.77it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.20it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.20it/ + 20/29 16G 0.01555 0.008185 0 68 1280: 5%|â– | 3/63 [00:04<01:34, 1.58s/it] 3.20it/ + 20/29 16G 0.01663 0.008138 0 72 1280: 10%|â–‰ | 6/63 [00:06<00:46, 1.24it/s] 3.20it/ + 20/29 16G 0.01775 0.008053 0 54 1280: 11%|â–ˆ | 7/63 [00:06<00:41, 1.36it/s] 3.20it/ + 20/29 16G 0.01736 0.008468 0 52 1280: 21%|██ | 13/63 [00:10<00:22, 2.23it/s]3.20it/ + 20/29 16G 0.01753 0.008763 0 60 1280: 27%|██▋ | 17/63 [00:14<00:27, 1.68it/s]3.20it/ + 20/29 16G 0.01732 0.008655 0 52 1280: 29%|██▊ | 18/63 [00:18<01:06, 1.47s/it]3.20it/ + 20/29 16G 0.01713 0.008594 0 50 1280: 30%|███ | 19/63 [00:20<01:19, 1.80s/it]3.20it/ + 20/29 16G 0.01703 0.008448 0 50 1280: 32%|███■| 20/63 [00:21<00:57, 1.33s/it]3.20it/ + 20/29 16G 0.01706 0.008415 0 58 1280: 37%|███▋ | 23/63 [00:23<00:34, 1.16it/s]3.20it/ + 20/29 16G 0.01718 0.008362 0 62 1280: 40%|███▉ | 25/63 [00:26<00:46, 1.22s/it]3.20it/ + 20/29 16G 0.01671 0.008267 0 46 1280: 46%|████▌ | 29/63 [00:27<00:15, 2.23it/s]3.20it/ + 20/29 16G 0.01671 0.008254 0 55 1280: 52%|█████■| 33/63 [00:30<00:13, 2.25it/s]3.20it/ + 20/29 16G 0.01668 0.008261 0 69 1280: 54%|█████■| 34/63 [00:33<00:34, 1.18s/it]3.20it/ + 20/29 16G 0.01665 0.008323 0 72 1280: 59%|█████▊ | 37/63 [00:38<00:34, 1.31s/it]3.20it/ + 20/29 16G 0.01674 0.008408 0 78 1280: 62%|██████■| 39/63 [00:39<00:18, 1.32it/s]3.20it/ + 20/29 16G 0.01682 0.008391 0 73 1280: 65%|██████▌ | 41/63 [00:42<00:24, 1.13s/it]3.20it/ + 20/29 16G 0.01667 0.008258 0 54 1280: 71%|███████■| 45/63 [00:43<00:07, 2.33it/s]3.20it/ + 20/29 16G 0.01673 0.008248 0 61 1280: 73%|███████▎ | 46/63 [00:46<00:21, 1.29s/it]3.20it/ + 20/29 16G 0.01682 0.00827 0 81 1280: 78%|███████▊ | 49/63 [00:47<00:08, 1.71it/s]3.20it/ + 20/29 16G 0.01681 0.00829 0 74 1280: 79%|███████▉ | 50/63 [00:49<00:11, 1.16it/s]3.20it/ + 20/29 16G 0.01673 0.008143 0 44 1280: 86%|████████▌ | 54/63 [00:55<00:08, 1.02it/s]3.20it/ + 20/29 16G 0.01674 0.008147 0 66 1280: 87%|████████▋ | 55/63 [00:55<00:05, 1.35it/s]3.20it/ + 20/29 16G 0.01672 0.008141 0 66 1280: 94%|█████████▎| 59/63 [00:58<00:02, 1.46it/s]3.20it/ + 20/29 16G 0.01675 0.008156 0 75 1280: 97%|█████████▋| 61/63 [00:59<00:01, 1.98it/s]3.20it/ + 20/29 16G 0.01673 0.008199 0 51 1280: 100%|██████████| 63/63 [01:02<00:00, 1.01it/s]3.20it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.07it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.07it/ + 21/29 16G 0.01471 0.008807 0 70 1280: 6%|â–‹ | 4/63 [00:03<01:14, 1.27s/it] 4.07it/ + 21/29 16G 0.01495 0.008671 0 55 1280: 11%|â–ˆ | 7/63 [00:05<00:50, 1.11it/s] 4.07it/ + 21/29 16G 0.01517 0.008721 0 78 1280: 13%|█▎ | 8/63 [00:06<00:36, 1.49it/s] 4.07it/ + 21/29 16G 0.01509 0.008521 0 46 1280: 22%|██■| 14/63 [00:09<00:21, 2.30it/s]4.07it/ + 21/29 16G 0.0153 0.008437 0 61 1280: 29%|██▊ | 18/63 [00:12<00:21, 2.10it/s]4.07it/ + 21/29 16G 0.01524 0.00839 0 70 1280: 30%|███ | 19/63 [00:14<00:42, 1.04it/s]4.07it/ + 21/29 16G 0.01515 0.008346 0 59 1280: 32%|███■| 20/63 [00:24<02:33, 3.58s/it]4.07it/ + 21/29 16G 0.0151 0.008365 0 69 1280: 33%|███▎ | 21/63 [00:27<02:17, 3.27s/it]4.07it/ + 21/29 16G 0.01523 0.008539 0 85 1280: 44%|████■| 28/63 [00:29<00:19, 1.83it/s]4.07it/ + 21/29 16G 0.01517 0.00856 0 68 1280: 46%|████▌ | 29/63 [00:32<00:34, 1.02s/it]4.07it/ + 21/29 16G 0.0152 0.008399 0 59 1280: 54%|█████■| 34/63 [00:34<00:14, 2.02it/s]4.07it/ + 21/29 16G 0.01521 0.008388 0 67 1280: 56%|█████▌ | 35/63 [00:34<00:14, 1.87it/s]4.07it/ + 21/29 16G 0.01517 0.008302 0 58 1280: 62%|██████■| 39/63 [00:42<00:25, 1.04s/it]4.07it/ + 21/29 16G 0.01523 0.008265 0 66 1280: 67%|██████▋ | 42/63 [00:46<00:22, 1.09s/it]4.07it/ + 21/29 16G 0.01521 0.008262 0 66 1280: 68%|██████▊ | 43/63 [00:46<00:17, 1.15it/s]4.07it/ + 21/29 16G 0.01513 0.00821 0 62 1280: 71%|███████■| 45/63 [00:50<00:22, 1.27s/it]4.07it/ + 21/29 16G 0.0153 0.008212 0 64 1280: 79%|███████▉ | 50/63 [00:52<00:06, 1.86it/s]4.07it/ + 21/29 16G 0.01529 0.008237 0 76 1280: 81%|████████ | 51/63 [00:53<00:08, 1.36it/s]4.07it/ + 21/29 16G 0.01523 0.008174 0 63 1280: 84%|████████■| 53/63 [01:02<00:23, 2.31s/it]4.07it/ + + 21/29 16G 0.01524 0.008158 0 64 1280: 87%|████████▋ | 55/63 [01:06<00:17, 2.16s/it]4.07it/ + 21/29 16G 0.01526 0.008198 0 82 1280: 89%|████████▉ | 56/63 [01:09<00:16, 2.41s/it]4.07it/ + 21/29 16G 0.01529 0.008229 0 68 1280: 92%|█████████â–| 58/63 [01:13<00:10, 2.14s/it]4.07it/ + 21/29 16G 0.01528 0.008255 0 69 1280: 94%|█████████▎| 59/63 [01:15<00:07, 1.96s/it]4.07it/ + 21/29 16G 0.01527 0.008269 0 33 1280: 100%|██████████| 63/63 [01:17<00:00, 1.24s/it]4.07it/ + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:01<00:01, 2.44it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.46it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.46it/ + 22/29 16G 0.01481 0.00769 0 81 1280: 13%|█▎ | 8/63 [00:03<00:22, 2.41it/s] 2.46it/ + 22/29 16G 0.01515 0.007317 0 51 1280: 19%|█▉ | 12/63 [00:05<00:21, 2.39it/s]2.46it/ + 22/29 16G 0.01511 0.007206 0 48 1280: 21%|██ | 13/63 [00:06<00:38, 1.28it/s]2.46it/ + 22/29 16G 0.01491 0.007174 0 67 1280: 24%|██■| 15/63 [00:09<00:50, 1.06s/it]2.46it/ + 22/29 16G 0.01509 0.007342 0 71 1280: 27%|██▋ | 17/63 [00:12<00:53, 1.17s/it]2.46it/ + 22/29 16G 0.01489 0.007362 0 63 1280: 32%|███■| 20/63 [00:14<00:38, 1.11it/s]2.46it/ + 22/29 16G 0.01483 0.007401 0 76 1280: 33%|███▎ | 21/63 [00:16<00:44, 1.07s/it]2.46it/ + 22/29 16G 0.01491 0.007327 0 43 1280: 35%|███■| 22/63 [00:17<00:53, 1.31s/it]2.46it/ + 22/29 16G 0.01505 0.007404 0 59 1280: 38%|███▊ | 24/63 [00:20<00:49, 1.27s/it]2.46it/ + 22/29 16G 0.015 0.007468 0 77 1280: 44%|████■| 28/63 [00:21<00:19, 1.82it/s]2.46it/ + 22/29 16G 0.01507 0.007603 0 87 1280: 48%|████▊ | 30/63 [00:23<00:20, 1.63it/s]2.46it/ + 22/29 16G 0.01503 0.007584 0 59 1280: 49%|████▉ | 31/63 [00:26<00:41, 1.29s/it]2.46it/ + 22/29 16G 0.01487 0.007541 0 57 1280: 56%|█████▌ | 35/63 [00:28<00:19, 1.44it/s]2.46it/ + 22/29 16G 0.01489 0.007507 0 58 1280: 57%|█████▋ | 36/63 [00:29<00:19, 1.42it/s]2.46it/ + 22/29 16G 0.01489 0.007501 0 71 1280: 65%|██████▌ | 41/63 [00:36<00:17, 1.26it/s]2.46it/ + 22/29 16G 0.01484 0.007497 0 57 1280: 67%|██████▋ | 42/63 [00:37<00:20, 1.04it/s]2.46it/ + 22/29 16G 0.01485 0.007557 0 69 1280: 70%|██████▉ | 44/63 [00:39<00:16, 1.13it/s]2.46it/ + 22/29 16G 0.01486 0.007611 0 55 1280: 76%|███████▌ | 48/63 [00:42<00:10, 1.43it/s]2.46it/ + 22/29 16G 0.01477 0.007639 0 68 1280: 81%|████████ | 51/63 [00:43<00:05, 2.28it/s]2.46it/ + 22/29 16G 0.01478 0.007641 0 70 1280: 83%|████████▎ | 52/63 [00:46<00:11, 1.03s/it]2.46it/ + 22/29 16G 0.01478 0.007641 0 73 1280: 86%|████████▌ | 54/63 [00:50<00:13, 1.49s/it]2.46it/ + 22/29 16G 0.01472 0.007655 0 77 1280: 94%|█████████▎| 59/63 [00:54<00:02, 1.52it/s]2.46it/ + 22/29 16G 0.01469 0.007655 0 56 1280: 95%|█████████▌| 60/63 [00:54<00:01, 1.95it/s]2.46it/ + 22/29 16G 0.01473 0.007641 0 59 1280: 97%|█████████▋| 61/63 [01:02<00:05, 2.72s/it]2.46it/ + 22/29 16G 0.01476 0.007651 0 32 1280: 100%|██████████| 63/63 [01:04<00:00, 1.02s/it]2.46it/ + Class Images Instances P R mAP50 mAP50-95: 88%|████████▊ | 7/8 [00:02<00:00, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.44it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.44it/ + 23/29 16G 0.01468 0.007513 0 58 1280: 11%|â–ˆ | 7/63 [00:06<00:34, 1.61it/s] 2.44it/ + 23/29 16G 0.01465 0.007724 0 87 1280: 13%|█▎ | 8/63 [00:07<00:36, 1.52it/s] 2.44it/ + 23/29 16G 0.01469 0.007876 0 70 1280: 16%|█▌ | 10/63 [00:10<00:54, 1.03s/it]2.44it/ + 23/29 16G 0.01472 0.007704 0 54 1280: 21%|██ | 13/63 [00:11<00:33, 1.48it/s]2.44it/ + 23/29 16G 0.01461 0.007808 0 65 1280: 24%|██■| 15/63 [00:14<00:45, 1.06it/s]2.44it/ + 23/29 16G 0.01448 0.007754 0 58 1280: 25%|██▌ | 16/63 [00:15<00:51, 1.09s/it]2.44it/ + 23/29 16G 0.01443 0.007732 0 46 1280: 30%|███ | 19/63 [00:18<00:45, 1.03s/it]2.44it/ + 23/29 16G 0.01444 0.007794 0 77 1280: 32%|███■| 20/63 [00:22<01:23, 1.95s/it]2.44it/ + 23/29 16G 0.0144 0.007856 0 79 1280: 33%|███▎ | 21/63 [00:27<01:53, 2.71s/it]2.44it/ + 23/29 16G 0.01423 0.007857 0 51 1280: 37%|███▋ | 23/63 [00:30<01:26, 2.17s/it]2.44it/ + 23/29 16G 0.01419 0.007906 0 53 1280: 43%|████▎ | 27/63 [00:32<00:28, 1.28it/s]2.44it/ + 23/29 16G 0.01422 0.007633 0 46 1280: 49%|████▉ | 31/63 [00:34<00:18, 1.73it/s]2.44it/ + 23/29 16G 0.01429 0.007737 0 99 1280: 51%|█████ | 32/63 [00:35<00:20, 1.49it/s]2.44it/ + 23/29 16G 0.0143 0.007692 0 65 1280: 59%|█████▊ | 37/63 [00:41<00:17, 1.50it/s]2.44it/ + 23/29 16G 0.01427 0.007657 0 63 1280: 63%|██████▎ | 40/63 [00:43<00:15, 1.45it/s]2.44it/ + 23/29 16G 0.01423 0.00764 0 84 1280: 67%|██████▋ | 42/63 [00:44<00:13, 1.54it/s]2.44it/ + 23/29 16G 0.01425 0.007621 0 54 1280: 68%|██████▊ | 43/63 [00:46<00:19, 1.04it/s]2.44it/ + 23/29 16G 0.01424 0.007596 0 57 1280: 70%|██████▉ | 44/63 [00:49<00:30, 1.58s/it]2.44it/ + 23/29 16G 0.01421 0.007564 0 60 1280: 71%|███████■| 45/63 [00:50<00:27, 1.50s/it]2.44it/ + 23/29 16G 0.01422 0.00756 0 76 1280: 75%|███████■| 47/63 [00:52<00:18, 1.15s/it]2.44it/ + 23/29 16G 0.01426 0.007535 0 52 1280: 76%|███████▌ | 48/63 [00:54<00:21, 1.43s/it]2.44it/ + 23/29 16G 0.01421 0.007633 0 85 1280: 83%|████████▎ | 52/63 [00:56<00:07, 1.38it/s]2.44it/ + 23/29 16G 0.01419 0.007605 0 56 1280: 86%|████████▌ | 54/63 [00:57<00:05, 1.57it/s]2.44it/ + 23/29 16G 0.01419 0.007585 0 67 1280: 89%|████████▉ | 56/63 [01:03<00:10, 1.45s/it]2.44it/ + 23/29 16G 0.01414 0.007548 0 55 1280: 95%|█████████▌| 60/63 [01:04<00:01, 1.51it/s]2.44it/ + 23/29 16G 0.01414 0.007544 0 61 1280: 97%|█████████▋| 61/63 [01:09<00:03, 1.88s/it]2.44it/ + 23/29 16G 0.01412 0.007538 0 57 1280: 98%|█████████▊| 62/63 [01:15<00:03, 3.10s/it]2.44it/ + 23/29 16G 0.01415 0.007514 0 33 1280: 100%|██████████| 63/63 [01:16<00:00, 1.22s/it]2.44it/ + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:02<00:03, 1.32it/ + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:03<00:03, 1.15it/ + Class Images Instances P R mAP50 mAP50-95: 62%|██████▎ | 5/8 [00:05<00:04, 1.35s/i + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:07<00:02, 1.47s/i + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:09<00:00, 1.23s/i + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:09<00:00, 1.23s/i + 24/29 16G 0.01311 0.007528 0 64 1280: 3%|â–Ž | 2/63 [00:03<01:45, 1.73s/it] 1.23s/i + 24/29 16G 0.01257 0.008039 0 77 1280: 5%|â– | 3/63 [00:04<01:08, 1.15s/it] 1.23s/i + 24/29 16G 0.0126 0.008216 0 83 1280: 6%|â–‹ | 4/63 [00:06<01:46, 1.80s/it] 1.23s/i + 24/29 16G 0.01305 0.008405 0 92 1280: 10%|â–‰ | 6/63 [00:09<01:15, 1.33s/it] 1.23s/i + 24/29 16G 0.01377 0.008407 0 62 1280: 16%|█▌ | 10/63 [00:11<00:34, 1.52it/s]1.23s/i + 24/29 16G 0.01314 0.008108 0 49 1280: 21%|██ | 13/63 [00:13<00:27, 1.81it/s]1.23s/i + 24/29 16G 0.01312 0.008068 0 71 1280: 22%|██■| 14/63 [00:17<01:24, 1.72s/it]1.23s/i + 24/29 16G 0.01309 0.007991 0 63 1280: 24%|██■| 15/63 [00:28<03:39, 4.57s/it]1.23s/i + 24/29 16G 0.01304 0.007857 0 53 1280: 25%|██▌ | 16/63 [00:30<02:57, 3.77s/it]1.23s/i + 24/29 16G 0.0128 0.007724 0 64 1280: 32%|███■| 20/63 [00:32<00:51, 1.19s/it]1.23s/i + 24/29 16G 0.01279 0.007698 0 65 1280: 33%|███▎ | 21/63 [00:33<00:51, 1.24s/it]1.23s/i + 24/29 16G 0.01274 0.007479 0 65 1280: 38%|███▊ | 24/63 [00:36<00:37, 1.03it/s]1.23s/i + 24/29 16G 0.01273 0.007346 0 46 1280: 44%|████■| 28/63 [00:38<00:20, 1.70it/s]1.23s/i + 24/29 16G 0.01275 0.007427 0 68 1280: 48%|████▊ | 30/63 [00:42<00:41, 1.25s/it]1.23s/i + 24/29 16G 0.01283 0.007438 0 73 1280: 51%|█████ | 32/63 [00:43<00:28, 1.10it/s]1.23s/i + 24/29 16G 0.01283 0.007409 0 57 1280: 52%|█████■| 33/63 [00:45<00:37, 1.26s/it]1.23s/i + 24/29 16G 0.01285 0.007442 0 58 1280: 56%|█████▌ | 35/63 [00:48<00:32, 1.17s/it]1.23s/i + 24/29 16G 0.01287 0.007492 0 82 1280: 57%|█████▋ | 36/63 [00:50<00:40, 1.48s/it]1.23s/i + 24/29 16G 0.01291 0.007472 0 64 1280: 60%|██████ | 38/63 [00:52<00:31, 1.25s/it]1.23s/i + 24/29 16G 0.01289 0.007407 0 55 1280: 63%|██████▎ | 40/63 [00:54<00:21, 1.05it/s]1.23s/i + 24/29 16G 0.01287 0.007407 0 80 1280: 65%|██████▌ | 41/63 [00:57<00:34, 1.55s/it]1.23s/i + 24/29 16G 0.01297 0.00755 0 87 1280: 71%|███████■| 45/63 [00:59<00:13, 1.29it/s]1.23s/i + 24/29 16G 0.01299 0.007605 0 70 1280: 75%|███████■| 47/63 [01:01<00:15, 1.03it/s]1.23s/i + 24/29 16G 0.01296 0.007624 0 83 1280: 78%|███████▊ | 49/63 [01:02<00:11, 1.24it/s]1.23s/i + 24/29 16G 0.01301 0.007586 0 71 1280: 81%|████████ | 51/63 [01:05<00:12, 1.00s/it]1.23s/i + 24/29 16G 0.01303 0.007569 0 60 1280: 83%|████████▎ | 52/63 [01:09<00:21, 1.99s/it]1.23s/i + 24/29 16G 0.01305 0.007559 0 58 1280: 84%|████████■| 53/63 [01:15<00:32, 3.27s/it]1.23s/i + 24/29 16G 0.01301 0.007512 0 51 1280: 89%|████████▉ | 56/63 [01:20<00:13, 1.94s/it]1.23s/i + 24/29 16G 0.01301 0.007541 0 63 1280: 92%|█████████â–| 58/63 [01:21<00:05, 1.14s/it]1.23s/i + 24/29 16G 0.01302 0.00756 0 79 1280: 94%|█████████▎| 59/63 [01:23<00:06, 1.61s/it]1.23s/i + 24/29 16G 0.01303 0.007512 0 40 1280: 95%|█████████▌| 60/63 [01:24<00:04, 1.48s/it]1.23s/i + 24/29 16G 0.01299 0.007465 0 37 1280: 100%|██████████| 63/63 [01:30<00:00, 1.44s/it]1.23s/i + Class Images Instances P R mAP50 mAP50-95: 62%|██████▎ | 5/8 [00:02<00:01, 2.24it/ + Class Images Instances P R mAP50 mAP50-95: 88%|████████▊ | 7/8 [00:03<00:00, 1.60it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:04<00:00, 1.74it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:04<00:00, 1.74it/ + 25/29 16G 0.01182 0.007085 0 86 1280: 11%|â–ˆ | 7/63 [00:04<00:22, 2.44it/s] 1.74it/ + 25/29 16G 0.01191 0.007044 0 65 1280: 13%|█▎ | 8/63 [00:04<00:19, 2.85it/s] 1.74it/ + 25/29 16G 0.01229 0.007172 0 54 1280: 14%|█■| 9/63 [00:08<01:15, 1.39s/it] 1.74it/ + 25/29 16G 0.0122 0.007308 0 55 1280: 21%|██ | 13/63 [00:10<00:34, 1.47it/s]1.74it/ + 25/29 16G 0.01213 0.007361 0 80 1280: 22%|██■| 14/63 [00:11<00:38, 1.26it/s]1.74it/ + 25/29 16G 0.01211 0.007371 0 47 1280: 25%|██▌ | 16/63 [00:14<00:54, 1.16s/it]1.74it/ + 25/29 16G 0.01207 0.00739 0 70 1280: 27%|██▋ | 17/63 [00:17<01:21, 1.78s/it]1.74it/ + 25/29 16G 0.01213 0.007328 0 60 1280: 29%|██▊ | 18/63 [00:20<01:38, 2.18s/it]1.74it/ + 25/29 16G 0.01214 0.007425 0 82 1280: 38%|███▊ | 24/63 [00:22<00:21, 1.83it/s]1.74it/ + 25/29 16G 0.01209 0.007357 0 54 1280: 40%|███▉ | 25/63 [00:23<00:19, 1.96it/s]1.74it/ + 25/29 16G 0.01206 0.007359 0 73 1280: 43%|████▎ | 27/63 [00:26<00:40, 1.13s/it]1.74it/ + 25/29 16G 0.01218 0.00722 0 61 1280: 48%|████▊ | 30/63 [00:27<00:18, 1.79it/s]1.74it/ + 25/29 16G 0.0121 0.007196 0 62 1280: 51%|█████ | 32/63 [00:32<00:44, 1.43s/it]1.74it/ + 25/29 16G 0.01206 0.00722 0 78 1280: 52%|█████■| 33/63 [00:35<00:55, 1.86s/it]1.74it/ + 25/29 16G 0.012 0.007169 0 65 1280: 54%|█████■| 34/63 [00:38<00:59, 2.05s/it]1.74it/ + 25/29 16G 0.012 0.007253 0 95 1280: 56%|█████▌ | 35/63 [00:41<01:05, 2.34s/it]1.74it/ + 25/29 16G 0.0121 0.007344 0 89 1280: 62%|██████■| 39/63 [00:43<00:22, 1.05it/s]1.74it/ + 25/29 16G 0.01208 0.007327 0 72 1280: 65%|██████▌ | 41/63 [00:45<00:21, 1.03it/s]1.74it/ + 25/29 16G 0.01204 0.007289 0 52 1280: 67%|██████▋ | 42/63 [00:45<00:17, 1.23it/s]1.74it/ + 25/29 16G 0.01202 0.007306 0 83 1280: 76%|███████▌ | 48/63 [00:48<00:05, 2.65it/s]1.74it/ + 25/29 16G 0.01202 0.007335 0 73 1280: 79%|███████▉ | 50/63 [00:50<00:06, 2.09it/s]1.74it/ + 25/29 16G 0.012 0.007283 0 58 1280: 86%|████████▌ | 54/63 [00:53<00:05, 1.52it/s]1.74it/ + 25/29 16G 0.01197 0.00726 0 52 1280: 90%|█████████ | 57/63 [00:55<00:03, 1.54it/s]1.74it/ + 25/29 16G 0.01202 0.007254 0 50 1280: 94%|█████████▎| 59/63 [00:56<00:02, 1.35it/s]1.74it/ + 25/29 16G 0.012 0.007268 0 38 1280: 100%|██████████| 63/63 [00:58<00:00, 1.07it/s]1.74it/ + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:02<00:07, 1.29s/i + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:04<00:00, 1.76it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:04<00:00, 1.76it/ + 26/29 16G 0.01358 0.007597 0 79 1280: 3%|â–Ž | 2/63 [00:02<01:14, 1.23s/it] 1.76it/ + 26/29 16G 0.01265 0.007603 0 64 1280: 5%|â– | 3/63 [00:03<00:59, 1.01it/s] 1.76it/ + 26/29 16G 0.01234 0.007508 0 66 1280: 6%|â–‹ | 4/63 [00:07<02:07, 2.16s/it] 1.76it/ + 26/29 16G 0.01161 0.007305 0 68 1280: 10%|â–‰ | 6/63 [00:10<01:40, 1.76s/it] 1.76it/ + 26/29 16G 0.01167 0.007571 0 44 1280: 14%|█■| 9/63 [00:13<00:54, 1.01s/it] 1.76it/ + 26/29 16G 0.01184 0.007329 0 49 1280: 24%|██■| 15/63 [00:15<00:20, 2.30it/s]1.76it/ + 26/29 16G 0.01173 0.007321 0 69 1280: 30%|███ | 19/63 [00:17<00:19, 2.20it/s]1.76it/ + 26/29 16G 0.01177 0.00723 0 56 1280: 35%|███■| 22/63 [00:19<00:24, 1.67it/s]1.76it/ + 26/29 16G 0.01164 0.007066 0 51 1280: 43%|████▎ | 27/63 [00:21<00:16, 2.19it/s]1.76it/ + 26/29 16G 0.01164 0.007038 0 65 1280: 44%|████■| 28/63 [00:22<00:24, 1.41it/s]1.76it/ + 26/29 16G 0.01163 0.007133 0 92 1280: 49%|████▉ | 31/63 [00:24<00:21, 1.48it/s]1.76it/ + 26/29 16G 0.01157 0.007115 0 66 1280: 52%|█████■| 33/63 [00:26<00:22, 1.36it/s]1.76it/ + 26/29 16G 0.01158 0.007135 0 82 1280: 54%|█████■| 34/63 [00:32<01:08, 2.37s/it]1.76it/ + 26/29 16G 0.01159 0.007153 0 77 1280: 59%|█████▊ | 37/63 [00:34<00:31, 1.22s/it]1.76it/ + 26/29 16G 0.01159 0.007103 0 66 1280: 67%|██████▋ | 42/63 [00:35<00:08, 2.48it/s]1.76it/ + 26/29 16G 0.01158 0.007102 0 62 1280: 76%|███████▌ | 48/63 [00:40<00:05, 2.58it/s]1.76it/ + 26/29 16G 0.01155 0.007081 0 50 1280: 78%|███████▊ | 49/63 [00:43<00:17, 1.22s/it]1.76it/ + 26/29 16G 0.01151 0.007041 0 66 1280: 84%|████████■| 53/63 [00:50<00:12, 1.24s/it]1.76it/ + 26/29 16G 0.01151 0.007008 0 54 1280: 92%|█████████â–| 58/63 [00:51<00:01, 2.54it/s]1.76it/ + 26/29 16G 0.01151 0.006999 0 59 1280: 94%|█████████▎| 59/63 [00:55<00:05, 1.31s/it]1.76it/ + 26/29 16G 0.01154 0.007051 0 40 1280: 100%|██████████| 63/63 [00:56<00:00, 1.12it/s]1.76it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.88it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.88it/ + 27/29 16G 0.01056 0.007622 0 61 1280: 6%|â–‹ | 4/63 [00:05<01:28, 1.50s/it] 3.88it/ + 27/29 16G 0.0104 0.007624 0 76 1280: 10%|â–‰ | 6/63 [00:07<01:05, 1.15s/it] 3.88it/ + 27/29 16G 0.01069 0.006795 0 48 1280: 17%|█▋ | 11/63 [00:09<00:19, 2.62it/s]3.88it/ + 27/29 16G 0.01082 0.006881 0 71 1280: 19%|█▉ | 12/63 [00:10<00:38, 1.32it/s]3.88it/ + 27/29 16G 0.01084 0.006943 0 61 1280: 27%|██▋ | 17/63 [00:12<00:16, 2.84it/s]3.88it/ + 27/29 16G 0.01086 0.006985 0 65 1280: 29%|██▊ | 18/63 [00:15<00:49, 1.10s/it]3.88it/ + 27/29 16G 0.01074 0.006909 0 65 1280: 32%|███■| 20/63 [00:20<01:15, 1.76s/it]3.88it/ + 27/29 16G 0.01076 0.006892 0 76 1280: 37%|███▋ | 23/63 [00:23<00:45, 1.14s/it]3.88it/ + 27/29 16G 0.01088 0.006862 0 82 1280: 43%|████▎ | 27/63 [00:24<00:14, 2.42it/s]3.88it/ + 27/29 16G 0.01093 0.00693 0 74 1280: 49%|████▉ | 31/63 [00:27<00:17, 1.87it/s]3.88it/ + 27/29 16G 0.0109 0.006991 0 91 1280: 52%|█████■| 33/63 [00:28<00:10, 2.77it/s]3.88it/ + 27/29 16G 0.01088 0.006945 0 58 1280: 54%|█████■| 34/63 [00:30<00:30, 1.05s/it]3.88it/ + 27/29 16G 0.01086 0.006925 0 68 1280: 56%|█████▌ | 35/63 [00:35<00:57, 2.05s/it]3.88it/ + 27/29 16G 0.01094 0.006847 0 48 1280: 59%|█████▊ | 37/63 [00:37<00:42, 1.65s/it]3.88it/ + 27/29 16G 0.01093 0.006656 0 58 1280: 68%|██████▊ | 43/63 [00:39<00:08, 2.44it/s]3.88it/ + 27/29 16G 0.01091 0.006683 0 77 1280: 70%|██████▉ | 44/63 [00:41<00:15, 1.26it/s]3.88it/ + 27/29 16G 0.01089 0.006664 0 53 1280: 78%|███████▊ | 49/63 [00:43<00:05, 2.70it/s]3.88it/ + 27/29 16G 0.01087 0.006633 0 45 1280: 79%|███████▉ | 50/63 [00:45<00:13, 1.02s/it]3.88it/ + 27/29 16G 0.01084 0.006641 0 55 1280: 83%|████████▎ | 52/63 [00:51<00:18, 1.71s/it]3.88it/ + 27/29 16G 0.01088 0.00676 0 92 1280: 86%|████████▌ | 54/63 [00:53<00:11, 1.33s/it]3.88it/ + 27/29 16G 0.01088 0.006763 0 84 1280: 94%|█████████▎| 59/63 [00:54<00:01, 2.46it/s]3.88it/ + 27/29 16G 0.01087 0.006764 0 64 1280: 97%|█████████▋| 61/63 [00:57<00:01, 1.01it/s]3.88it/ + 27/29 16G 0.01083 0.006734 0 32 1280: 100%|██████████| 63/63 [00:57<00:00, 1.09it/s]3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.09it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.09it/ + 28/29 16G 0.01018 0.007349 0 76 1280: 10%|â–‰ | 6/63 [00:07<01:24, 1.48s/it] 4.09it/ + 28/29 16G 0.01016 0.007167 0 88 1280: 19%|█▉ | 12/63 [00:09<00:19, 2.67it/s]4.09it/ + 28/29 16G 0.0102 0.007207 0 73 1280: 21%|██ | 13/63 [00:10<00:37, 1.34it/s]4.09it/ + 28/29 16G 0.01014 0.007172 0 66 1280: 29%|██▊ | 18/63 [00:13<00:17, 2.60it/s]4.09it/ + 28/29 16G 0.01016 0.007019 0 43 1280: 30%|███ | 19/63 [00:15<00:42, 1.03it/s]4.09it/ + 28/29 16G 0.01014 0.007022 0 70 1280: 33%|███▎ | 21/63 [00:20<01:10, 1.67s/it]4.09it/ + 28/29 16G 0.01014 0.006946 0 73 1280: 37%|███▋ | 23/63 [00:22<00:51, 1.28s/it]4.09it/ + 28/29 16G 0.01023 0.006915 0 66 1280: 44%|████■| 28/63 [00:24<00:15, 2.19it/s]4.09it/ + 28/29 16G 0.01021 0.006933 0 64 1280: 46%|████▌ | 29/63 [00:26<00:26, 1.26it/s]4.09it/ + 28/29 16G 0.01019 0.006882 0 70 1280: 54%|█████■| 34/63 [00:28<00:11, 2.56it/s]4.09it/ + 28/29 16G 0.01021 0.006924 0 65 1280: 56%|█████▌ | 35/63 [00:30<00:27, 1.03it/s]4.09it/ + 28/29 16G 0.01015 0.006875 0 49 1280: 63%|██████▎ | 40/63 [00:39<00:22, 1.04it/s]4.09it/ + 28/29 16G 0.01009 0.006835 0 53 1280: 67%|██████▋ | 42/63 [00:40<00:18, 1.15it/s]4.09it/ + 28/29 16G 0.01009 0.006835 0 53 1280: 67%|██████▋ | 42/63 [00:40<00:18, 1.15it/s]4.09it/ + + 28/29 16G 0.01013 0.00679 0 49 1280: 70%|██████▉ | 44/63 [01:02<01:56, 6.11s/it]4.09it/ + 28/29 16G 0.01013 0.006735 0 43 1280: 71%|███████■| 45/63 [01:22<03:06, 10.37s/it]4.09it/ + 28/29 16G 0.01014 0.006743 0 66 1280: 73%|███████▎ | 46/63 [01:35<03:06, 11.00s/it]4.09it/ + 28/29 16G 0.01013 0.006711 0 51 1280: 75%|███████■| 47/63 [01:49<03:13, 12.07s/it]4.09it/ + 28/29 16G 0.01013 0.00669 0 62 1280: 76%|███████▌ | 48/63 [01:57<02:40, 10.72s/it]4.09it/ + 28/29 16G 0.01011 0.006669 0 67 1280: 78%|███████▊ | 49/63 [02:03<02:12, 9.43s/it]4.09it/ + 28/29 16G 0.01011 0.006669 0 75 1280: 79%|███████▉ | 50/63 [02:09<01:48, 8.37s/it]4.09it/ + 28/29 16G 0.0101 0.006667 0 65 1280: 81%|████████ | 51/63 [02:15<01:32, 7.73s/it]4.09it/ + 28/29 16G 0.01007 0.006573 0 41 1280: 87%|████████▋ | 55/63 [02:18<00:18, 2.32s/it]4.09it/ + 28/29 16G 0.0101 0.006574 0 69 1280: 97%|█████████▋| 61/63 [02:21<00:01, 1.79it/s]4.09it/ + 28/29 16G 0.01005 0.006564 0 44 1280: 100%|██████████| 63/63 [02:22<00:00, 2.26s/it]4.09it/ + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:02<00:06, 1.10s/i + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:07<00:14, 2.96s/i + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:09<00:10, 2.60s/i + Class Images Instances P R mAP50 mAP50-95: 88%|████████▊ | 7/8 [00:12<00:01, 1.25s/i + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:13<00:00, 1.63s/i + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:13<00:00, 1.63s/i + 29/29 16G 0.009658 0.006052 0 67 1280: 2%|â– | 1/63 [00:07<07:30, 7.26s/it] 1.63s/i + 29/29 16G 0.009666 0.00671 0 90 1280: 11%|â–ˆ | 7/63 [00:11<00:38, 1.46it/s] 1.63s/i + 29/29 16G 0.00984 0.006937 0 84 1280: 19%|█▉ | 12/63 [00:14<00:25, 2.01it/s]1.63s/i + 29/29 16G 0.009816 0.006841 0 54 1280: 24%|██■| 15/63 [00:17<00:38, 1.25it/s]1.63s/i + 29/29 16G 0.009851 0.006885 0 81 1280: 25%|██▌ | 16/63 [00:17<00:33, 1.42it/s]1.63s/i + 29/29 16G 0.009791 0.006801 0 50 1280: 27%|██▋ | 17/63 [00:22<01:29, 1.94s/it]1.63s/i + 29/29 16G 0.009854 0.006723 0 45 1280: 29%|██▊ | 18/63 [00:30<02:42, 3.61s/it]1.63s/i + 29/29 16G 0.009643 0.006455 0 46 1280: 32%|███■| 20/63 [00:32<01:36, 2.25s/it]1.63s/i + 29/29 16G 0.009576 0.006565 0 96 1280: 35%|███■| 22/63 [00:34<01:06, 1.61s/it]1.63s/i + 29/29 16G 0.009573 0.006587 0 62 1280: 41%|████■| 26/63 [00:36<00:28, 1.31it/s]1.63s/i + 29/29 16G 0.009504 0.006589 0 56 1280: 48%|████▊ | 30/63 [00:38<00:19, 1.67it/s]1.63s/i + 29/29 16G 0.009524 0.00664 0 75 1280: 49%|████▉ | 31/63 [00:40<00:35, 1.10s/it]1.63s/i + 29/29 16G 0.009456 0.006639 0 68 1280: 54%|█████■| 34/63 [00:41<00:19, 1.51it/s]1.63s/i + 29/29 16G 0.009431 0.006594 0 54 1280: 56%|█████▌ | 35/63 [00:43<00:27, 1.03it/s]1.63s/i + 29/29 16G 0.009468 0.006538 0 60 1280: 59%|█████▊ | 37/63 [00:45<00:29, 1.15s/it]1.63s/i + 29/29 16G 0.009464 0.006522 0 64 1280: 60%|██████ | 38/63 [00:46<00:26, 1.06s/it]1.63s/i + 29/29 16G 0.009412 0.006511 0 50 1280: 63%|██████▎ | 40/63 [00:50<00:32, 1.41s/it]1.63s/i + 29/29 16G 0.009394 0.006516 0 41 1280: 68%|██████▊ | 43/63 [00:51<00:17, 1.14it/s]1.63s/i + 29/29 16G 0.009431 0.006574 0 94 1280: 75%|███████■| 47/63 [00:54<00:11, 1.36it/s]1.63s/i + 29/29 16G 0.009457 0.006538 0 53 1280: 78%|███████▊ | 49/63 [00:56<00:11, 1.26it/s]1.63s/i + 29/29 16G 0.009464 0.006584 0 92 1280: 81%|████████ | 51/63 [00:58<00:10, 1.10it/s]1.63s/i + 29/29 16G 0.00944 0.00657 0 72 1280: 83%|████████▎ | 52/63 [00:59<00:10, 1.05it/s]1.63s/i + 29/29 16G 0.009451 0.006576 0 63 1280: 86%|████████▌ | 54/63 [01:02<00:11, 1.23s/it]1.63s/i + 29/29 16G 0.009457 0.006541 0 62 1280: 90%|█████████ | 57/63 [01:04<00:06, 1.00s/it]1.63s/i + 29/29 16G 0.009457 0.006557 0 63 1280: 95%|█████████▌| 60/63 [01:06<00:02, 1.43it/s]1.63s/i + 29/29 16G 0.009464 0.006529 0 62 1280: 98%|█████████▊| 62/63 [01:08<00:00, 1.32it/s]1.63s/i + 29/29 16G 0.009465 0.006551 0 43 1280: 100%|██████████| 63/63 [01:09<00:00, 1.11s/it]1.63s/i + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:02<00:02, 1.53it/ + Class Images Instances P R mAP50 mAP50-95: 62%|██████▎ | 5/8 [00:04<00:03, 1.17s/i + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:07<00:03, 1.62s/i + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:08<00:00, 1.09s/i + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:08<00:00, 1.09s/i +Fusing layers... d from runs/train/exp14/weights/best.pt, 42.6MB R mAP50 mAP50-95: 100%|██████████| 8/8 [00:08<00:00, 1.09s/i +Fusing layers... d from runs/train/exp14/weights/best.pt, 42.6MB R mAP50 mAP50-95: 100%|██████████| 8/8 [00:08<00:00, 1.09s/i + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:03<00:10, 1.81s/i + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:05<00:10, 2.03s/i + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:08<00:08, 2.17s/i + Class Images Instances P R mAP50 mAP50-95: 88%|████████▊ | 7/8 [00:10<00:01, 1.08s/i + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:11<00:00, 1.38s/i +Results saved to [1mruns/train/exp14[22m Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:11<00:00, 1.38s/i +Results saved to [1mruns/train/exp14[22m Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:11<00:00, 1.38s/i +Results saved to [1mruns/train/exp14[22m Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:11<00:00, 1.38s/i \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/requirements.txt b/yolov5_model/wandb/run-20230226_192253-294etqct/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192253-294etqct/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..08f6bd9dc283d2414f2f00bdc362a30da96b83e4 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-metadata.json @@ -0,0 +1,37 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-27T01:22:58.381630", + "startedAt": "2023-02-27T01:22:53.441843", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 2, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "16", + "--epochs", + "30", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt", + "--workers", + "40" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..1c4bf4fd21efcb3164ac9b108ce46e1eded75de3 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json @@ -0,0 +1 @@ +{"best/epoch": 26, "best/precision": 0.9997558968711976, "best/recall": 0.9966887417218543, "best/mAP_0.5": 0.995, "best/mAP_0.5:0.95": 0.9046413636594037, "Labels": {"_type": "images/separated", "width": 1600, "height": 1600, "format": "jpg", "count": 2, "filenames": ["media/images/Labels_0_86483f0d36733e5da8e0.jpg", "media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg"], "captions": ["labels.jpg", "labels_correlogram.jpg"]}, "Mosaics": {"_type": "images/separated", "width": 1920, "height": 1920, "format": "jpg", "count": 3, "filenames": ["media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg", "media/images/Mosaics_0_424a5cb76a2816c2809d.jpg", "media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg"], "captions": ["train_batch0.jpg", "train_batch1.jpg", "train_batch2.jpg"]}, "train/box_loss": 0.00946456752717495, "train/obj_loss": 0.0065511721186339855, "train/cls_loss": 0.0, "metrics/precision": 0.9997549757273153, "metrics/recall": 0.9966887417218543, "metrics/mAP_0.5": 0.995, "metrics/mAP_0.5:0.95": 0.9039493028803427, "val/box_loss": 0.009309005923569202, "val/obj_loss": 0.006571829319000244, "val/cls_loss": 0.0, "x/lr0": 0.0007599999999999998, "x/lr1": 0.0007599999999999998, "x/lr2": 0.0007599999999999998, "_timestamp": 1677463493, "_runtime": 2520, "_step": 30, "Validation": {"_type": "images/separated", "width": 1268, "height": 1920, "format": "jpg", "count": 6, "filenames": ["media/images/Validation_30_e404c2d565b3a61e5a5b.jpg", "media/images/Validation_30_2df4e1249b9bd4fda40e.jpg", "media/images/Validation_30_73879ae5c6da6dbad3d9.jpg", "media/images/Validation_30_5a21eed7e48c71fdef66.jpg", "media/images/Validation_30_11f0e2769a75856f91d5.jpg", "media/images/Validation_30_5b6c0b940a45c887546f.jpg"], "captions": ["val_batch0_labels.jpg", "val_batch0_pred.jpg", "val_batch1_labels.jpg", "val_batch1_pred.jpg", "val_batch2_labels.jpg", "val_batch2_pred.jpg"]}, "Results": {"_type": "images/separated", "width": 2400, "height": 1200, "format": "png", "count": 6, "filenames": ["media/images/Results_30_6b35553e60a9a47a223a.png", "media/images/Results_30_1919cd7ca3699dbfdb9c.png", "media/images/Results_30_0c73d072170afc8cc076.png", "media/images/Results_30_eb2cf95fc60deb852d4c.png", "media/images/Results_30_6e3c03e95f926739a83f.png", "media/images/Results_30_f4cd8dcfc503f4e0e92a.png"], "captions": ["results.png", "confusion_matrix.png", "F1_curve.png", "PR_curve.png", "P_curve.png", "R_curve.png"]}, "_wandb": {"runtime": 2520}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_192253-294etqct/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..2de74b30f393555c39773fa9cbf01e9a4e5bfdcf --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192253-294etqct/logs/debug-internal.log @@ -0,0 +1,1834 @@ +2023-02-26 19:22:55,474 INFO MainThread:8044 [internal.py:wandb_internal():90] W&B internal server running at pid: 8044, started at: 2023-02-26 19:22:55.472867 +2023-02-26 19:22:55,476 INFO WriterThread:8044 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/run-294etqct.wandb +2023-02-26 19:22:55,478 DEBUG SenderThread:8044 [sender.py:send():232] send: header +2023-02-26 19:22:55,478 DEBUG SenderThread:8044 [sender.py:send():232] send: run +2023-02-26 19:22:55,487 INFO SenderThread:8044 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/294etqct +2023-02-26 19:22:55,626 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 19:22:55,633 INFO SenderThread:8044 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files +2023-02-26 19:22:55,633 INFO SenderThread:8044 [sender.py:_start_run_threads():811] run started: 294etqct with start time 1677460973 +2023-02-26 19:22:55,633 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:22:55,634 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:22:55,635 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: check_version +2023-02-26 19:22:55,687 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 19:22:56,699 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:22:58,381 DEBUG HandlerThread:8044 [meta.py:__init__():35] meta init +2023-02-26 19:22:58,381 DEBUG HandlerThread:8044 [meta.py:__init__():49] meta init done +2023-02-26 19:22:58,381 DEBUG HandlerThread:8044 [meta.py:probe():209] probe +2023-02-26 19:22:58,390 DEBUG HandlerThread:8044 [meta.py:_setup_git():199] setup git +2023-02-26 19:22:58,429 DEBUG HandlerThread:8044 [meta.py:_setup_git():206] setup git done +2023-02-26 19:22:58,429 DEBUG HandlerThread:8044 [meta.py:_save_pip():53] save pip +2023-02-26 19:22:58,431 DEBUG HandlerThread:8044 [meta.py:_save_pip():67] save pip done +2023-02-26 19:22:58,431 DEBUG HandlerThread:8044 [meta.py:_save_conda():74] save conda +2023-02-26 19:22:58,701 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/requirements.txt +2023-02-26 19:22:58,702 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/conda-environment.yaml +2023-02-26 19:23:00,703 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:02,705 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:03,571 DEBUG HandlerThread:8044 [meta.py:_save_conda():84] save conda done +2023-02-26 19:23:03,572 DEBUG HandlerThread:8044 [meta.py:probe():247] probe done +2023-02-26 19:23:03,578 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:23:03,578 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:23:03,629 DEBUG SenderThread:8044 [sender.py:send():232] send: telemetry +2023-02-26 19:23:03,629 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 19:23:03,629 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-02-26 19:23:03,706 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/conda-environment.yaml +2023-02-26 19:23:03,706 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-metadata.json +2023-02-26 19:23:03,959 INFO Thread-11 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/d84rp66u-wandb-metadata.json +2023-02-26 19:23:09,710 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:11,712 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:13,714 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:15,716 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:17,718 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:18,904 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:23:18,904 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:23:19,725 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:23,735 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:26,740 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/config.yaml +2023-02-26 19:23:28,531 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:23:33,984 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:23:33,984 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:23:43,775 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:45,777 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:47,779 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:49,045 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:23:49,045 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:23:49,781 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:51,783 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:53,785 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:23:55,787 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:00,648 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:24:04,097 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:24:04,097 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:24:07,799 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:09,800 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:19,144 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:24:19,145 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:24:21,813 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:23,831 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:25,960 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:27,994 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:30,008 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:30,195 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:24:30,197 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:24:30,197 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:24:30,198 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:24:30,198 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:24:30,199 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:24:30,199 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:24:30,200 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:24:30,200 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:24:30,200 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:24:30,621 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 19:24:30,621 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Labels_0_86483f0d36733e5da8e0.jpg with policy now +2023-02-26 19:24:30,623 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 19:24:30,623 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg with policy now +2023-02-26 19:24:30,784 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 19:24:30,784 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg with policy now +2023-02-26 19:24:30,791 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 19:24:30,791 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Mosaics_0_424a5cb76a2816c2809d.jpg with policy now +2023-02-26 19:24:30,797 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 19:24:30,797 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg with policy now +2023-02-26 19:24:30,974 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:24:30,976 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:24:30,976 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:24:30,978 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:24:30,983 INFO Thread-12 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/2z4p2arv-media/images/Labels_0_86483f0d36733e5da8e0.jpg +2023-02-26 19:24:31,012 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:24:31,013 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg +2023-02-26 19:24:31,013 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg +2023-02-26 19:24:31,013 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg +2023-02-26 19:24:31,013 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Labels_0_86483f0d36733e5da8e0.jpg +2023-02-26 19:24:31,014 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_424a5cb76a2816c2809d.jpg +2023-02-26 19:24:31,014 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media +2023-02-26 19:24:31,014 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images +2023-02-26 19:24:31,065 INFO Thread-13 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/b156ghmr-media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg +2023-02-26 19:24:31,185 INFO Thread-15 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/65fu2jin-media/images/Mosaics_0_424a5cb76a2816c2809d.jpg +2023-02-26 19:24:31,187 INFO Thread-14 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/kl4464s0-media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg +2023-02-26 19:24:31,187 INFO Thread-16 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/1552f7y0-media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg +2023-02-26 19:24:32,017 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:33,258 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:24:34,223 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:24:34,227 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:24:36,268 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:38,155 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:44,324 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:45,322 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:47,326 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:24:49,551 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:24:49,553 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:24:51,851 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:25:02,406 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:25:04,976 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:25:04,978 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:25:12,625 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:25:13,186 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:25:19,566 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:25:20,515 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:25:20,521 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:25:27,439 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:25:36,519 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:25:36,523 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:25:38,242 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:25:44,743 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:25:51,801 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:25:51,802 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:25:53,659 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:25:55,348 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:25:59,679 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:03,754 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:05,855 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:07,048 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:26:07,049 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:26:08,027 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:13,275 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:15,286 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:17,292 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:19,331 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:21,362 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:22,340 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:26:22,340 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:26:23,536 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:25,652 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:27,662 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:28,393 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:26:29,711 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:31,985 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:36,036 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:37,607 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:26:37,611 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:26:38,095 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:40,123 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:42,251 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:44,258 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:46,299 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:48,338 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:48,624 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:26:48,625 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:26:48,626 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:26:48,627 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:26:49,375 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:26:50,465 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:26:53,005 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:26:53,006 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:26:56,814 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:00,937 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:03,255 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:27:05,132 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:08,149 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:27:08,150 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:27:09,274 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:11,358 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:13,486 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:15,600 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:17,651 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:19,654 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:21,815 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:23,457 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:27:23,457 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:27:23,876 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:26,283 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:29,397 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:31,510 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:33,625 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:37,712 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:38,374 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:27:38,544 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:27:38,548 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:27:39,734 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:41,765 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:43,793 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:45,913 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:47,915 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:49,983 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:51,995 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:53,712 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:27:53,713 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:27:54,022 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:56,026 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:27:58,121 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:00,119 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:02,177 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:04,185 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:06,344 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:08,915 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:28:08,917 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:28:09,452 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:11,578 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:12,882 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:28:13,671 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:15,682 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:16,838 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:28:16,840 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:28:16,841 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:28:16,843 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:28:17,754 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:28:17,754 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:18,756 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:21,829 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:23,912 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:24,008 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:28:24,009 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:28:24,964 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:26,971 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:28,977 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:30,979 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:36,105 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:37,225 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:39,112 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:28:39,113 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:28:41,221 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:43,297 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:45,353 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:46,584 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:28:47,416 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:49,465 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:51,507 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:53,510 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:54,524 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:28:54,525 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:28:55,627 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:57,638 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:28:59,635 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:01,639 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:03,650 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:07,668 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:09,641 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:29:09,645 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:29:09,683 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:15,857 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:17,970 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:19,465 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:29:19,980 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:20,490 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:29:20,494 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:29:20,494 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:29:20,496 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:29:20,497 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:29:20,497 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:29:20,498 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:29:20,498 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:29:20,499 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:29:20,499 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:29:20,500 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:29:20,500 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:29:20,500 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:29:20,501 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:29:21,053 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:29:22,056 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:24,065 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:24,850 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:29:24,851 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:29:26,169 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:28,194 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:32,298 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:34,305 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:36,308 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:38,408 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:40,366 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:29:40,368 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:29:40,469 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:42,487 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:44,566 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:48,705 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:50,614 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:52,653 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:52,740 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:29:54,660 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:55,671 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:29:55,674 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:29:56,698 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:29:58,752 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:00,935 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:03,001 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:05,009 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:07,037 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:09,039 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:10,774 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:30:10,776 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:30:11,187 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:13,191 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:15,195 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:17,200 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:19,211 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:21,214 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:23,221 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:25,223 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:25,288 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:30:25,893 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:30:25,894 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:30:27,231 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:27,908 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:30:27,910 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:30:27,912 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:30:27,912 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:30:27,913 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:30:27,914 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:30:27,915 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:30:27,915 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:30:27,916 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:30:27,916 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:30:27,917 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:30:27,918 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:30:27,918 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:30:27,919 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:30:28,232 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:30:29,239 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:31,242 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:33,268 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:35,272 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:37,274 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:39,298 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:40,967 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:30:40,969 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:30:41,307 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:43,351 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:45,354 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:47,358 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:49,367 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:51,368 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:53,373 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:55,379 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:56,058 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:30:56,058 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:30:57,312 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:30:57,388 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:30:59,391 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:01,398 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:02,440 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:04,442 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:08,449 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:10,679 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:11,112 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:31:11,113 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:31:12,681 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:14,685 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:16,688 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:18,697 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:20,700 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:24,753 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:26,200 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:31:26,201 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:31:26,758 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:28,760 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:29,849 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:31:30,764 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:32,768 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:32,792 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:31:32,794 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:31:32,795 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:31:32,796 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:31:32,797 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:31:32,797 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:31:32,798 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:31:32,798 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:31:32,799 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:31:32,799 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:31:32,799 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:31:32,800 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:31:32,800 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:31:32,801 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:31:33,771 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:31:34,774 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:36,833 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:38,842 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:40,848 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:41,269 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:31:41,270 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:31:42,852 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:44,860 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:46,862 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:48,871 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:50,874 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:54,882 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:56,349 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:31:56,349 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:31:56,885 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:31:58,888 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:02,133 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:32:02,896 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:04,899 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:06,902 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:08,905 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:10,962 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:11,411 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:32:11,411 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:32:12,995 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:17,008 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:19,036 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:21,050 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:23,202 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:26,506 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:32:26,509 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:32:27,211 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:29,215 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:33,248 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:35,075 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:32:35,244 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:37,949 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:32:37,951 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:32:37,952 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:32:37,952 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:32:37,954 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:32:37,954 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:32:37,955 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:32:37,955 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:32:37,956 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:32:37,957 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:32:37,959 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:32:37,959 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:32:37,960 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:32:37,961 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:32:38,251 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:32:38,251 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:40,340 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:41,340 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:41,639 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:32:41,640 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:32:44,417 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:46,421 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:48,489 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:49,495 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:53,523 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:55,529 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:32:56,758 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:32:56,761 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:32:57,631 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:01,688 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:03,697 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:07,749 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:33:07,756 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:09,815 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:11,770 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:11,830 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:33:11,831 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:33:13,922 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:15,913 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:17,919 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:21,932 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:23,937 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:26,931 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:33:26,932 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:33:27,993 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:30,123 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:32,133 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:34,156 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:36,164 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:33:40,890 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:33:42,183 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:33:42,185 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:33:57,645 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:33:57,653 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:33:58,338 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:34:06,407 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:34:13,452 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:34:13,541 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:34:16,492 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:34:24,922 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:34:25,261 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:34:27,398 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:34:28,892 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:34:28,988 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:34:31,881 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:34:36,484 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:34:39,730 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:34:43,778 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:34:44,724 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:34:44,724 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:34:44,762 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:34:45,210 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:34:45,212 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:34:45,215 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:34:45,933 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:34:45,949 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:34:48,376 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:34:56,989 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:00,222 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:35:00,223 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:35:03,347 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:35:04,396 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:11,198 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:17,312 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:35:17,332 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:35:19,483 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:27,908 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:29,913 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:32,171 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:32,795 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:35:32,797 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:35:34,425 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:43,140 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:44,342 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:35:45,213 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:47,232 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:48,467 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:35:48,469 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:35:49,255 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:51,270 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:53,339 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:55,347 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:57,399 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:35:59,478 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:01,561 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:03,620 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:36:03,629 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:36:03,717 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:07,938 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:09,984 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:11,989 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:14,144 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:16,114 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:18,134 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:18,487 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:36:18,813 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:36:18,814 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:36:20,148 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:22,160 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:24,163 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:26,356 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:28,396 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:30,401 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:31,704 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:36:31,706 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:36:31,708 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:36:31,711 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:36:32,554 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:36:32,555 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:33,977 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:36:33,979 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:36:34,661 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:36,613 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:38,623 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:40,627 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:44,683 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:46,710 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:48,719 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:49,227 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:36:49,228 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:36:50,786 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:52,689 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:36:52,822 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:54,879 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:57,040 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:36:59,116 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:01,209 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:04,350 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:37:04,353 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:37:05,288 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:08,352 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:10,373 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:13,389 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:16,555 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:18,598 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:19,707 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:37:19,707 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:37:20,660 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:22,663 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:24,729 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:27,321 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:37:27,804 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:28,805 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:30,815 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:33,839 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:34,847 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:37:34,862 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:37:35,847 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:37,852 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:42,978 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:44,971 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:45,832 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:37:45,834 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:37:45,834 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:37:45,835 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:37:46,023 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:37:47,030 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:49,031 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:49,982 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:37:49,983 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:37:51,034 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:53,041 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:37:59,058 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:00,137 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:38:01,064 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:03,068 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:05,045 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:38:05,046 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:38:05,070 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:07,078 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:15,114 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:17,119 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:19,123 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:20,127 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:38:20,127 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:38:22,131 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:24,135 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:32,151 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:32,380 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:38:34,157 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:35,177 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:38:35,178 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:38:36,161 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:38,171 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:40,171 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:48,185 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:48,452 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:38:48,454 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:38:48,454 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:38:48,456 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:38:48,457 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:38:48,457 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:38:48,458 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:38:48,458 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:38:48,459 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:38:48,460 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:38:48,460 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:38:48,461 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:38:48,461 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:38:48,462 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:38:49,187 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:38:50,189 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:50,248 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:38:50,249 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:38:52,194 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:54,203 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:38:56,207 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:04,229 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:04,706 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:39:05,310 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:39:05,311 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:39:06,231 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:08,236 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:10,239 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:12,245 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:20,272 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:20,502 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:39:20,503 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:39:22,280 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:24,287 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:26,291 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:28,294 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:35,690 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:39:35,692 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:39:36,312 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:36,853 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:39:38,315 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:40,327 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:42,356 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:44,360 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:39:51,228 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:39:51,422 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:39:58,169 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:02,377 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:04,492 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:05,366 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:40:05,367 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:40:05,368 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:40:05,369 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:40:05,539 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:40:06,555 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:06,781 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:40:06,817 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:40:08,697 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:10,837 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:11,593 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:40:12,948 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:14,994 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:17,182 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:18,184 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:21,270 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:22,082 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:40:22,082 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:40:23,276 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:25,425 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:26,443 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:28,449 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:30,455 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:32,683 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:34,697 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:36,757 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:37,171 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:40:37,172 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:40:38,884 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:40,938 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:42,976 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:45,046 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:46,089 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:40:49,162 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:52,314 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:40:52,317 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:40:53,478 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:40:59,633 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:01,637 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:03,690 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:05,696 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:07,650 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:41:07,653 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:41:07,719 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:09,730 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:11,761 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:13,766 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:14,820 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:41:14,822 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:41:14,824 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:41:14,824 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:41:14,825 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:41:14,825 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:41:14,826 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:41:14,826 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:41:14,827 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:41:14,827 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:41:14,828 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:41:14,828 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:41:14,829 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:41:14,829 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:41:15,769 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:41:15,770 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:17,790 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:20,599 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:41:20,820 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:22,823 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:22,918 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:41:22,918 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:41:24,829 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:26,832 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:28,843 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:32,916 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:34,994 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:37,000 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:38,104 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:41:38,105 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:41:39,006 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:43,086 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:47,064 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:48,066 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:51,083 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:53,094 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:41:53,280 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:41:53,282 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:41:54,083 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:41:54,095 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:00,200 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:04,232 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:06,239 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:08,354 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:42:08,356 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:42:10,245 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:12,252 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:16,276 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:18,032 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:42:18,033 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:42:18,034 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:42:18,035 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:42:18,293 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:42:18,293 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:20,296 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:22,303 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:23,453 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:42:23,453 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:42:26,368 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:26,590 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:42:28,374 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:32,398 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:34,410 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:36,424 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:39,077 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:42:39,079 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:42:39,460 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:41,465 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:43,470 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:47,484 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:49,500 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:54,146 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:42:54,148 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:42:55,597 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:42:57,602 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:43:00,203 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:43:09,294 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:43:09,299 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:43:11,381 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:43:19,678 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:43:24,277 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:43:25,269 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:43:25,270 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:43:33,927 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:43:38,742 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:43:40,717 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:43:40,823 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:43:40,824 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:43:46,618 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:43:54,982 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:43:56,497 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:43:56,498 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:43:59,175 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:04,488 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:08,808 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:12,179 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:44:12,215 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:44:15,497 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:19,605 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:20,412 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:44:26,068 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:27,419 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:44:27,420 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:44:29,244 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:31,426 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:33,612 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:37,821 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:42,779 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:44:42,781 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:44:44,660 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:48,042 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:52,160 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:54,133 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:55,147 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:44:55,149 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:44:55,151 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:44:55,152 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:44:55,154 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:44:55,154 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:44:55,157 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:44:55,157 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:44:55,159 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:44:55,159 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:44:55,163 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:44:55,163 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:44:55,163 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:44:55,288 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:44:56,137 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:44:56,140 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:44:56,837 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:44:58,008 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:44:58,009 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:44:58,294 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:02,398 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:04,467 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:06,471 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:08,475 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:10,482 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:12,484 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:13,161 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:45:13,161 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:45:14,489 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:16,499 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:18,502 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:20,509 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:22,513 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:24,518 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:26,526 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:28,237 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:45:28,238 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:45:28,529 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:29,086 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:45:30,540 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:32,632 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:36,641 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:38,649 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:40,673 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:42,673 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:43,369 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:45:43,370 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:45:44,676 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:45,995 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:45:45,996 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:45:45,996 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:45:45,998 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:45:46,681 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:45:46,683 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:48,688 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:52,694 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:54,699 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:56,718 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:45:58,447 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:45:58,449 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:45:58,722 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:00,725 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:01,465 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:46:02,733 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:04,736 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:08,822 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:10,829 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:12,835 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:13,653 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:46:13,653 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:46:14,837 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:16,843 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:18,847 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:22,890 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:24,905 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:26,908 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:28,880 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:46:28,882 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:46:28,914 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:30,917 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:32,920 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:33,954 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:46:34,923 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:38,932 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:40,936 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:42,939 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:43,971 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:46:43,975 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:46:44,956 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:46,961 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:50,662 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:46:50,663 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:46:50,665 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:46:50,665 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:46:50,667 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:46:50,667 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:46:50,668 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:46:50,668 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:46:50,669 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:46:50,669 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:46:50,670 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:46:50,670 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:46:50,671 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:46:50,672 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:46:51,006 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:46:51,007 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:53,012 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:55,020 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:59,052 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:46:59,066 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:46:59,067 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:47:01,055 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:03,061 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:06,207 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:47:07,072 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:14,287 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:47:14,357 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:47:15,521 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:17,598 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:21,677 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:23,747 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:25,833 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:29,558 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:47:29,561 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:47:33,964 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:35,967 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:40,812 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:47:43,700 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:44,733 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:47:44,734 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:47:47,783 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:49,905 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:56,078 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:58,106 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:47:59,947 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:47:59,949 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:48:00,166 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:04,723 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:08,917 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:10,963 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:12,981 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:15,000 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:15,064 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:48:15,064 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:48:15,795 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:48:17,014 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:19,027 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:19,468 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:48:19,469 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:48:19,471 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:48:19,471 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:48:19,472 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:48:19,472 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:48:19,473 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:48:19,473 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:48:19,474 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:48:19,475 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:48:19,476 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:48:19,476 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:48:19,476 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:48:19,477 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:48:20,044 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:48:21,155 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:23,171 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:25,426 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:30,242 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:48:30,243 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:48:31,820 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:36,032 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:38,125 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:39,086 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:42,248 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:43,254 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:45,285 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:45,473 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:48:45,474 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:48:47,380 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:49,385 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:50,736 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:48:52,534 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:54,582 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:56,600 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:48:58,741 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:00,746 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:49:00,747 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:49:00,840 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:02,856 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:04,875 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:06,886 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:09,105 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:11,174 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:12,267 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:14,272 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:15,906 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:49:15,906 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:49:16,277 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:18,283 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:20,293 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:23,338 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:25,813 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:26,201 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:49:26,740 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:30,800 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:31,025 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:49:31,027 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:49:35,053 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:37,070 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:39,080 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:45,238 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:47,254 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:48,413 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:49:48,414 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:49:49,289 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:50,090 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:49:50,092 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:49:50,093 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:49:50,093 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:49:50,094 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:49:50,095 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:49:50,096 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:49:50,096 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:49:50,097 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:49:50,097 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:49:50,098 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:49:50,098 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:49:50,098 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:49:50,099 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:49:50,291 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:49:51,456 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:53,456 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:57,632 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:49:59,639 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:01,337 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:50:01,644 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:03,516 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:50:03,541 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:50:03,780 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:05,864 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:07,903 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:12,033 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:16,382 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:18,663 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:50:18,663 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:50:20,480 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:22,544 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:24,698 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:26,720 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:28,777 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:30,781 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:32,783 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:33,949 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:50:33,951 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:50:34,792 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:36,253 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:50:36,801 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:38,804 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:40,808 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:42,815 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:44,831 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:46,857 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:48,291 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:50:48,292 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:50:48,292 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:50:48,294 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:50:48,863 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:50:48,864 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:49,064 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:50:49,065 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:50:50,871 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:52,879 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:54,882 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:56,903 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:50:58,916 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:00,926 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:04,259 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:51:04,260 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:51:04,939 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:08,710 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:51:08,955 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:10,959 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:12,966 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:14,972 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:16,975 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:18,978 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:19,387 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:51:19,387 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:51:20,995 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:25,011 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:29,046 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:31,050 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:33,053 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:34,484 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:51:34,485 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:51:35,063 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:37,064 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:39,065 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:40,991 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:51:41,071 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:45,081 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:47,086 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:49,089 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:49,605 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:51:49,606 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:51:51,092 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:53,046 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:51:53,047 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:51:53,049 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:51:53,049 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:51:53,050 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:51:53,050 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:51:53,051 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:51:53,051 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:51:53,052 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:51:53,052 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:51:53,053 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:51:53,053 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:51:53,054 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:51:53,055 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:51:53,096 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:51:53,096 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:55,099 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:57,106 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:51:59,109 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:01,113 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:03,116 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:04,676 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:52:04,676 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:52:05,119 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:09,125 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:11,129 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:13,578 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:52:19,899 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:52:19,902 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:52:21,509 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:23,515 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:25,564 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:27,567 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:29,573 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:31,581 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:35,437 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:52:35,438 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:52:37,599 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:41,686 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:43,734 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:45,754 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:47,105 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:52:47,871 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:49,977 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:52:50,524 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:52:50,546 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:52:58,171 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:00,363 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:02,566 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:04,572 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:05,634 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:53:05,635 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:53:08,682 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:10,686 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:12,764 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:14,827 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:15,217 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:53:15,219 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:53:15,219 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:53:15,220 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:53:15,826 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:53:16,848 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:18,843 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:20,852 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:20,936 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:53:20,937 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:53:21,509 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:53:22,868 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:24,872 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:26,957 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:29,088 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:31,131 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:33,136 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:35,156 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:36,183 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:53:36,184 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:53:37,200 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:39,218 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:41,276 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:43,344 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:45,362 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:47,370 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:51,270 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:53:51,274 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:53:53,457 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:55,467 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:55,579 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:53:57,511 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:53:59,548 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:01,557 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:03,586 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:06,371 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:54:06,374 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:54:07,597 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:11,650 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:13,822 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:20,337 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:21,512 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:54:21,512 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:54:22,390 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:23,465 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:54:23,467 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:54:23,468 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:54:23,468 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:54:23,469 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:54:23,469 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:54:23,470 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:54:23,470 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:54:23,471 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:54:23,471 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:54:23,472 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:54:23,473 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:54:23,473 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:54:23,474 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:54:24,468 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:54:24,481 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:26,546 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:29,727 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:54:30,588 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:32,603 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:34,748 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:36,614 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:54:36,627 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:54:36,760 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:38,769 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:41,073 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:43,083 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:45,180 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:48,413 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:51,934 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:54:52,213 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:54:54,726 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:56,733 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:54:58,789 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:00,832 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:02,916 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:05,185 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:55:06,935 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:07,613 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:55:07,618 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:55:08,940 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:11,157 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:13,232 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:15,218 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:17,287 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:19,367 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:21,378 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:22,708 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:55:22,709 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:55:23,398 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:25,448 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:28,753 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:31,781 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:36,023 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:37,938 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:55:37,939 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:55:39,711 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:55:41,078 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:43,286 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:45,298 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:47,579 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:49,903 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:51,635 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:55:51,637 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:55:51,638 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:55:51,638 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:55:51,640 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:55:51,640 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:55:51,641 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:55:51,641 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:55:51,642 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:55:51,642 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:55:51,644 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:55:51,644 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:55:51,644 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:55:51,645 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:55:51,872 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:55:51,872 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:53,231 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:55:53,243 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:55:53,996 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:56,062 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:55:58,100 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:00,201 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:02,285 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:04,293 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:06,401 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:08,512 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:56:08,513 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:56:08,627 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:13,042 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:13,896 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:56:22,657 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:23,744 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:56:23,744 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:56:24,661 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:26,742 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:28,899 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:30,904 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:33,052 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:37,322 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:39,002 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:56:39,006 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:56:39,366 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:41,450 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:43,613 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:45,617 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:47,708 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:48,406 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:56:49,731 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:51,795 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:53,938 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:54,265 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:56:54,265 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:56:55,967 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:56:58,099 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:00,262 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:04,421 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:09,402 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:57:09,407 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:57:10,926 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:14,067 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:16,170 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:18,218 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:20,229 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:24,125 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:57:24,299 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:24,558 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:57:24,558 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:57:26,335 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:28,454 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:28,670 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:57:28,671 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:57:28,672 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:57:28,690 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:57:29,459 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:57:30,570 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:32,658 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:34,662 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:36,672 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:38,675 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:39,624 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:57:39,663 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:57:40,855 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:42,860 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:44,917 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:49,329 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:51,378 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:53,446 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:54,993 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:57:54,994 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:57:55,449 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:57,459 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:57:58,863 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:57:59,540 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:03,937 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:07,060 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:09,069 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:10,117 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:58:10,121 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:58:11,158 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:13,199 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:15,201 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:18,289 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:20,379 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:21,431 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:23,448 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:25,239 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:58:25,240 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:58:25,527 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:27,647 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:29,688 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:31,792 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:32,251 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:58:33,261 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:58:33,262 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:58:33,263 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:58:33,263 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:58:33,264 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:58:33,264 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:58:33,265 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:58:33,265 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:58:33,266 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:58:33,267 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:58:33,267 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:58:33,268 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:58:33,268 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:58:33,269 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:58:33,789 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:58:33,789 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:35,846 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:37,863 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:39,868 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:40,392 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:58:40,393 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:58:44,029 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:46,099 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:48,127 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:50,131 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:52,174 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:54,176 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:55,621 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:58:55,622 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:58:56,224 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:58:58,291 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:00,293 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:02,299 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:05,494 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:59:08,313 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:10,316 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:10,787 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:59:10,790 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:59:12,343 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:16,351 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:20,396 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:25,880 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:59:25,883 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:59:26,408 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:28,413 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:30,429 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:32,433 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:32,803 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:59:32,805 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 19:59:32,818 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:59:32,818 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:59:32,828 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:59:32,830 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:59:32,834 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:59:32,835 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:59:32,839 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:59:32,840 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:59:32,847 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:59:32,847 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 19:59:32,848 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 19:59:32,855 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 19:59:33,533 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 19:59:34,533 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:36,536 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:38,022 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 19:59:40,546 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:40,998 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:59:40,998 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:59:42,549 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:44,552 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:46,555 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:48,559 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:50,562 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:56,129 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 19:59:56,129 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 19:59:56,571 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 19:59:58,577 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:00,579 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:02,583 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:04,586 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:06,590 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:10,015 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 20:00:10,598 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:11,187 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:00:11,188 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:00:12,601 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:14,605 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:16,608 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:18,611 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:22,618 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:26,234 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:00:26,234 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:00:26,624 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:28,627 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:30,630 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:32,633 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:33,945 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:00:33,946 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 20:00:33,946 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 20:00:33,947 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:00:34,647 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 20:00:34,648 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:36,650 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:40,657 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:41,283 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:00:41,283 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:00:42,002 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 20:00:42,660 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:44,663 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:46,666 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:48,669 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:52,677 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:56,331 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:00:56,332 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:00:56,690 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:00:58,695 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:01:00,698 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:01:02,701 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:01:04,704 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:01:06,707 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:01:11,395 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:01:11,398 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:01:14,162 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 20:01:15,116 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:01:17,339 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:01:26,378 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:01:26,914 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:01:26,915 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:01:27,428 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:01:38,556 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:01:42,703 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:01:42,756 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:01:55,615 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 20:01:58,747 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:01:58,770 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:01:58,770 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:02:10,931 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:02:14,512 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:02:14,514 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:02:25,731 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:02:30,583 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:02:30,591 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:02:33,546 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:02:37,228 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 20:02:40,180 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:02:46,060 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:02:46,063 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:02:47,073 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:02:52,446 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:02:54,451 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:02:56,474 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:02:59,649 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:00,674 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:01,346 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:03:01,347 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:03:04,997 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:07,016 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:09,071 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:10,014 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:03:10,015 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 20:03:10,015 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 20:03:10,113 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:03:10,116 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 20:03:11,119 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:14,406 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:14,853 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 20:03:16,937 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:03:16,939 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:03:20,785 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:24,806 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:26,879 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:31,175 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:32,182 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:32,663 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:03:32,689 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:03:37,250 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:42,619 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:44,596 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:46,599 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:47,925 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:03:47,933 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:03:48,660 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:50,670 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:50,673 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 20:03:52,683 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:54,832 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:57,114 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:03:59,131 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:01,291 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:03,309 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:03,352 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:04:03,353 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:04:05,489 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:07,608 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:09,774 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:11,753 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:13,762 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:15,830 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:17,852 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:18,455 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:04:18,464 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:04:19,913 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:22,074 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:23,064 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:24,114 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 20:04:26,105 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:28,224 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:30,225 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:30,339 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:04:30,340 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 20:04:30,341 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 20:04:30,343 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:04:31,228 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 20:04:32,232 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:33,784 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:04:33,786 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:04:34,288 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:36,336 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:38,348 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:40,836 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:42,936 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:43,963 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:45,975 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:47,979 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:49,012 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:04:49,013 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:04:50,125 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:53,067 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: log_artifact +2023-02-26 20:04:53,071 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: log_artifact +2023-02-26 20:04:53,297 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_5b6c0b940a45c887546f.jpg +2023-02-26 20:04:53,305 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_2df4e1249b9bd4fda40e.jpg +2023-02-26 20:04:53,305 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_11f0e2769a75856f91d5.jpg +2023-02-26 20:04:53,305 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_e404c2d565b3a61e5a5b.jpg +2023-02-26 20:04:53,305 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_5a21eed7e48c71fdef66.jpg +2023-02-26 20:04:53,306 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_73879ae5c6da6dbad3d9.jpg +2023-02-26 20:04:53,306 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images +2023-02-26 20:04:53,692 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:04:54,308 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_f4cd8dcfc503f4e0e92a.png +2023-02-26 20:04:54,313 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_eb2cf95fc60deb852d4c.png +2023-02-26 20:04:54,313 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_0c73d072170afc8cc076.png +2023-02-26 20:04:54,313 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_1919cd7ca3699dbfdb9c.png +2023-02-26 20:04:54,313 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_6b35553e60a9a47a223a.png +2023-02-26 20:04:54,313 INFO Thread-7 :8044 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_6e3c03e95f926739a83f.png +2023-02-26 20:04:54,802 INFO Thread-18 :8044 [upload_job.py:push():95] Uploaded file /home/akhot2/.cache/wandb/artifacts/obj/md5/95/8a7770ba7c46d4761867537fb9367e +2023-02-26 20:04:55,528 INFO SenderThread:8044 [sender.py:send_request_log_artifact():1001] logged artifact run_294etqct_model - {'id': 'QXJ0aWZhY3Q6MzgyMzM5NzM5', 'digest': '41b553f96594b7e12607d61bda51df3b', 'state': 'PENDING', 'aliases': [], 'artifactSequence': {'id': 'QXJ0aWZhY3RDb2xsZWN0aW9uOjU0OTQyNzE2', 'latestArtifact': None}, 'version': 'latest'} +2023-02-26 20:04:55,530 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,531 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Validation_30_e404c2d565b3a61e5a5b.jpg with policy now +2023-02-26 20:04:55,532 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,532 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Validation_30_2df4e1249b9bd4fda40e.jpg with policy now +2023-02-26 20:04:55,533 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,533 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Validation_30_73879ae5c6da6dbad3d9.jpg with policy now +2023-02-26 20:04:55,533 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,533 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Validation_30_5a21eed7e48c71fdef66.jpg with policy now +2023-02-26 20:04:55,533 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,534 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Validation_30_11f0e2769a75856f91d5.jpg with policy now +2023-02-26 20:04:55,538 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,539 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Validation_30_5b6c0b940a45c887546f.jpg with policy now +2023-02-26 20:04:55,541 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,542 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Results_30_6b35553e60a9a47a223a.png with policy now +2023-02-26 20:04:55,542 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,542 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Results_30_1919cd7ca3699dbfdb9c.png with policy now +2023-02-26 20:04:55,546 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,546 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Results_30_0c73d072170afc8cc076.png with policy now +2023-02-26 20:04:55,547 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,547 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Results_30_eb2cf95fc60deb852d4c.png with policy now +2023-02-26 20:04:55,550 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,550 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Results_30_6e3c03e95f926739a83f.png with policy now +2023-02-26 20:04:55,551 DEBUG SenderThread:8044 [sender.py:send():232] send: files +2023-02-26 20:04:55,551 INFO SenderThread:8044 [sender.py:_save_file():946] saving file media/images/Results_30_f4cd8dcfc503f4e0e92a.png with policy now +2023-02-26 20:04:55,554 DEBUG SenderThread:8044 [sender.py:send():232] send: history +2023-02-26 20:04:55,556 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 20:04:55,558 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:04:55,560 DEBUG SenderThread:8044 [sender.py:send():232] send: telemetry +2023-02-26 20:04:55,560 DEBUG SenderThread:8044 [sender.py:send():232] send: telemetry +2023-02-26 20:04:56,017 INFO Thread-27 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/w6tyqxaz-media/images/Results_30_0c73d072170afc8cc076.png +2023-02-26 20:04:56,022 INFO Thread-19 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/y4hnq73f-media/images/Validation_30_e404c2d565b3a61e5a5b.jpg +2023-02-26 20:04:56,023 INFO Thread-29 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/38p5hp55-media/images/Results_30_6e3c03e95f926739a83f.png +2023-02-26 20:04:56,023 INFO Thread-28 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/2kz3dt4s-media/images/Results_30_eb2cf95fc60deb852d4c.png +2023-02-26 20:04:56,024 INFO Thread-22 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/n5cfth6y-media/images/Validation_30_5a21eed7e48c71fdef66.jpg +2023-02-26 20:04:56,025 INFO Thread-23 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/3jn4u9dq-media/images/Validation_30_11f0e2769a75856f91d5.jpg +2023-02-26 20:04:56,025 INFO Thread-24 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/23ir3s2e-media/images/Validation_30_5b6c0b940a45c887546f.jpg +2023-02-26 20:04:56,026 INFO Thread-20 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/3mh80730-media/images/Validation_30_2df4e1249b9bd4fda40e.jpg +2023-02-26 20:04:56,026 INFO Thread-26 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/3gw1wg4k-media/images/Results_30_1919cd7ca3699dbfdb9c.png +2023-02-26 20:04:56,028 INFO Thread-30 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/3h9k2vjs-media/images/Results_30_f4cd8dcfc503f4e0e92a.png +2023-02-26 20:04:56,030 INFO Thread-25 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/3srmrxsh-media/images/Results_30_6b35553e60a9a47a223a.png +2023-02-26 20:04:56,030 INFO Thread-21 :8044 [upload_job.py:push():137] Uploaded file /tmp/tmpyvizndwlwandb/205cifld-media/images/Validation_30_73879ae5c6da6dbad3d9.jpg +2023-02-26 20:04:56,351 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 20:04:56,351 DEBUG SenderThread:8044 [sender.py:send():232] send: exit +2023-02-26 20:04:56,352 INFO SenderThread:8044 [sender.py:send_exit():368] handling exit code: 0 +2023-02-26 20:04:56,354 INFO SenderThread:8044 [sender.py:send_exit():370] handling runtime: 2520 +2023-02-26 20:04:56,434 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:04:56,434 INFO SenderThread:8044 [sender.py:send_exit():376] send defer +2023-02-26 20:04:56,435 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 20:04:56,435 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: defer +2023-02-26 20:04:56,435 INFO HandlerThread:8044 [handler.py:handle_request_defer():164] handle defer: 0 +2023-02-26 20:04:56,435 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: defer +2023-02-26 20:04:56,435 INFO SenderThread:8044 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-02-26 20:04:56,435 INFO SenderThread:8044 [sender.py:transition_state():389] send defer: 1 +2023-02-26 20:04:56,436 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: defer +2023-02-26 20:04:56,436 INFO HandlerThread:8044 [handler.py:handle_request_defer():164] handle defer: 1 +2023-02-26 20:04:56,444 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 20:04:56,444 INFO Thread-7 :8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:56,574 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 20:04:56,574 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: defer +2023-02-26 20:04:56,575 INFO SenderThread:8044 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-02-26 20:04:56,575 INFO SenderThread:8044 [sender.py:transition_state():389] send defer: 2 +2023-02-26 20:04:56,575 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 20:04:56,575 DEBUG SenderThread:8044 [sender.py:send():232] send: stats +2023-02-26 20:04:56,575 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: defer +2023-02-26 20:04:56,576 INFO HandlerThread:8044 [handler.py:handle_request_defer():164] handle defer: 2 +2023-02-26 20:04:56,576 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: defer +2023-02-26 20:04:56,576 INFO SenderThread:8044 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-02-26 20:04:56,576 INFO SenderThread:8044 [sender.py:transition_state():389] send defer: 3 +2023-02-26 20:04:56,576 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: defer +2023-02-26 20:04:56,576 INFO HandlerThread:8044 [handler.py:handle_request_defer():164] handle defer: 3 +2023-02-26 20:04:56,577 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: defer +2023-02-26 20:04:56,578 INFO SenderThread:8044 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-02-26 20:04:56,578 INFO SenderThread:8044 [sender.py:transition_state():389] send defer: 4 +2023-02-26 20:04:56,578 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: defer +2023-02-26 20:04:56,578 INFO HandlerThread:8044 [handler.py:handle_request_defer():164] handle defer: 4 +2023-02-26 20:04:56,578 DEBUG SenderThread:8044 [sender.py:send():232] send: summary +2023-02-26 20:04:56,579 INFO SenderThread:8044 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:04:56,580 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: defer +2023-02-26 20:04:56,580 INFO SenderThread:8044 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-02-26 20:04:56,580 INFO SenderThread:8044 [sender.py:transition_state():389] send defer: 5 +2023-02-26 20:04:56,580 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: defer +2023-02-26 20:04:56,580 INFO HandlerThread:8044 [handler.py:handle_request_defer():164] handle defer: 5 +2023-02-26 20:04:56,580 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: defer +2023-02-26 20:04:56,580 INFO SenderThread:8044 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-02-26 20:04:56,681 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 20:04:56,683 INFO SenderThread:8044 [sender.py:transition_state():389] send defer: 6 +2023-02-26 20:04:56,683 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 20:04:56,683 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: defer +2023-02-26 20:04:56,683 INFO HandlerThread:8044 [handler.py:handle_request_defer():164] handle defer: 6 +2023-02-26 20:04:56,683 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: defer +2023-02-26 20:04:56,683 INFO SenderThread:8044 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-02-26 20:04:56,683 INFO SenderThread:8044 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 20:04:56,784 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 20:04:57,497 INFO SenderThread:8044 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/config.yaml +2023-02-26 20:04:57,501 INFO SenderThread:8044 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files +2023-02-26 20:04:57,507 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/requirements.txt requirements.txt +2023-02-26 20:04:57,507 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log output.log +2023-02-26 20:04:57,508 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/conda-environment.yaml conda-environment.yaml +2023-02-26 20:04:57,516 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/config.yaml config.yaml +2023-02-26 20:04:57,520 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-metadata.json wandb-metadata.json +2023-02-26 20:04:57,520 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json wandb-summary.json +2023-02-26 20:04:57,527 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg +2023-02-26 20:04:57,529 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_2df4e1249b9bd4fda40e.jpg media/images/Validation_30_2df4e1249b9bd4fda40e.jpg +2023-02-26 20:04:57,530 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_5a21eed7e48c71fdef66.jpg media/images/Validation_30_5a21eed7e48c71fdef66.jpg +2023-02-26 20:04:57,530 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg +2023-02-26 20:04:57,530 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_eb2cf95fc60deb852d4c.png media/images/Results_30_eb2cf95fc60deb852d4c.png +2023-02-26 20:04:57,530 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_424a5cb76a2816c2809d.jpg media/images/Mosaics_0_424a5cb76a2816c2809d.jpg +2023-02-26 20:04:57,530 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg +2023-02-26 20:04:57,530 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_73879ae5c6da6dbad3d9.jpg media/images/Validation_30_73879ae5c6da6dbad3d9.jpg +2023-02-26 20:04:57,530 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_6b35553e60a9a47a223a.png media/images/Results_30_6b35553e60a9a47a223a.png +2023-02-26 20:04:57,530 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_f4cd8dcfc503f4e0e92a.png media/images/Results_30_f4cd8dcfc503f4e0e92a.png +2023-02-26 20:04:57,530 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_5b6c0b940a45c887546f.jpg media/images/Validation_30_5b6c0b940a45c887546f.jpg +2023-02-26 20:04:57,531 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_e404c2d565b3a61e5a5b.jpg media/images/Validation_30_e404c2d565b3a61e5a5b.jpg +2023-02-26 20:04:57,531 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Validation_30_11f0e2769a75856f91d5.jpg media/images/Validation_30_11f0e2769a75856f91d5.jpg +2023-02-26 20:04:57,531 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_1919cd7ca3699dbfdb9c.png media/images/Results_30_1919cd7ca3699dbfdb9c.png +2023-02-26 20:04:57,531 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Labels_0_86483f0d36733e5da8e0.jpg media/images/Labels_0_86483f0d36733e5da8e0.jpg +2023-02-26 20:04:57,531 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_6e3c03e95f926739a83f.png media/images/Results_30_6e3c03e95f926739a83f.png +2023-02-26 20:04:57,531 INFO SenderThread:8044 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/media/images/Results_30_0c73d072170afc8cc076.png media/images/Results_30_0c73d072170afc8cc076.png +2023-02-26 20:04:57,531 INFO SenderThread:8044 [sender.py:transition_state():389] send defer: 7 +2023-02-26 20:04:57,531 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 20:04:57,531 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: defer +2023-02-26 20:04:57,531 INFO HandlerThread:8044 [handler.py:handle_request_defer():164] handle defer: 7 +2023-02-26 20:04:57,532 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: defer +2023-02-26 20:04:57,532 INFO SenderThread:8044 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-02-26 20:04:57,532 INFO SenderThread:8044 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 20:04:57,632 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 20:04:57,632 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 20:04:57,733 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 20:04:57,733 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 20:04:57,838 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 20:04:57,838 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 20:04:57,865 INFO Thread-31 :8044 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/requirements.txt +2023-02-26 20:04:57,866 INFO Thread-34 :8044 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/config.yaml +2023-02-26 20:04:57,874 INFO Thread-33 :8044 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/conda-environment.yaml +2023-02-26 20:04:57,875 INFO Thread-35 :8044 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/wandb-summary.json +2023-02-26 20:04:57,886 INFO Thread-32 :8044 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/files/output.log +2023-02-26 20:04:57,939 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 20:04:57,939 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 20:04:58,040 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 20:04:58,040 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 20:04:58,086 INFO Thread-6 :8044 [sender.py:transition_state():389] send defer: 8 +2023-02-26 20:04:58,086 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: defer +2023-02-26 20:04:58,086 INFO HandlerThread:8044 [handler.py:handle_request_defer():164] handle defer: 8 +2023-02-26 20:04:58,086 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: defer +2023-02-26 20:04:58,086 INFO SenderThread:8044 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-02-26 20:04:58,141 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 20:04:58,407 INFO SenderThread:8044 [sender.py:transition_state():389] send defer: 9 +2023-02-26 20:04:58,407 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 20:04:58,408 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: defer +2023-02-26 20:04:58,408 INFO HandlerThread:8044 [handler.py:handle_request_defer():164] handle defer: 9 +2023-02-26 20:04:58,408 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: defer +2023-02-26 20:04:58,408 INFO SenderThread:8044 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-02-26 20:04:58,408 INFO SenderThread:8044 [sender.py:transition_state():389] send defer: 10 +2023-02-26 20:04:58,409 DEBUG SenderThread:8044 [sender.py:send():232] send: final +2023-02-26 20:04:58,409 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: defer +2023-02-26 20:04:58,409 DEBUG SenderThread:8044 [sender.py:send():232] send: footer +2023-02-26 20:04:58,409 INFO HandlerThread:8044 [handler.py:handle_request_defer():164] handle defer: 10 +2023-02-26 20:04:58,409 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: defer +2023-02-26 20:04:58,409 INFO SenderThread:8044 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-02-26 20:04:58,509 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 20:04:58,510 DEBUG SenderThread:8044 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 20:04:58,510 INFO SenderThread:8044 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 20:04:58,687 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: sampled_history +2023-02-26 20:04:58,689 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: get_summary +2023-02-26 20:04:58,690 DEBUG HandlerThread:8044 [handler.py:handle_request():141] handle_request: shutdown +2023-02-26 20:04:58,690 INFO HandlerThread:8044 [handler.py:finish():806] shutting down handler +2023-02-26 20:04:59,410 INFO WriterThread:8044 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/run-294etqct.wandb +2023-02-26 20:04:59,588 INFO SenderThread:8044 [sender.py:finish():1106] shutting down sender +2023-02-26 20:04:59,590 INFO SenderThread:8044 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 20:04:59,590 INFO SenderThread:8044 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 20:04:59,598 INFO MainThread:8044 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/logs/debug.log b/yolov5_model/wandb/run-20230226_192253-294etqct/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..a09106755f0f045794428995bae5d5c30be8007d --- /dev/null +++ b/yolov5_model/wandb/run-20230226_192253-294etqct/logs/debug.log @@ -0,0 +1,147 @@ +2023-02-26 19:22:53,456 INFO MainThread:5585 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 19:22:53,457 INFO MainThread:5585 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 19:22:53,457 INFO MainThread:5585 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 19:22:53,457 INFO MainThread:5585 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 19:22:53,457 INFO MainThread:5585 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 19:22:53,457 INFO MainThread:5585 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/logs/debug.log +2023-02-26 19:22:53,457 INFO MainThread:5585 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_192253-294etqct/logs/debug-internal.log +2023-02-26 19:22:53,457 INFO MainThread:5585 [wandb_init.py:init():471] calling init triggers +2023-02-26 19:22:53,457 INFO MainThread:5585 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 30, 'batch_size': 16, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 40, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp14'} +2023-02-26 19:22:53,457 INFO MainThread:5585 [wandb_init.py:init():524] starting backend +2023-02-26 19:22:53,458 INFO MainThread:5585 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 19:22:53,472 INFO MainThread:5585 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 19:22:53,484 INFO MainThread:5585 [backend.py:ensure_launched():222] started backend process with pid: 8044 +2023-02-26 19:22:53,486 INFO MainThread:5585 [wandb_init.py:init():533] backend started and connected +2023-02-26 19:22:53,491 INFO MainThread:5585 [wandb_init.py:init():597] updated telemetry +2023-02-26 19:22:53,522 INFO MainThread:5585 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 19:22:55,626 INFO MainThread:5585 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 19:22:55,686 INFO MainThread:5585 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 19:22:55,686 INFO MainThread:5585 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 19:23:00,691 INFO MainThread:5585 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 19:23:00,693 INFO MainThread:5585 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 19:23:00,693 INFO MainThread:5585 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 19:23:00,694 INFO MainThread:5585 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 19:23:00,695 INFO MainThread:5585 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 20:04:53,691 INFO MainThread:5585 [wandb_run.py:_finish():1685] finishing run akhot2/YOLOv5/294etqct +2023-02-26 20:04:53,692 INFO MainThread:5585 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 0 +2023-02-26 20:04:53,697 INFO MainThread:5585 [wandb_run.py:_restore():1838] restore +2023-02-26 20:04:56,435 INFO MainThread:5585 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47025844 + total_bytes: 47025844 +} + +2023-02-26 20:04:56,575 INFO MainThread:5585 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47025844 + total_bytes: 47025844 +} + +2023-02-26 20:04:56,683 INFO MainThread:5585 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47025844 + total_bytes: 47025844 +} + +2023-02-26 20:04:57,531 INFO MainThread:5585 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47025844 + total_bytes: 47134703 +} + +2023-02-26 20:04:57,633 INFO MainThread:5585 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47093936 + total_bytes: 47134703 +} + +2023-02-26 20:04:57,734 INFO MainThread:5585 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47134703 + total_bytes: 47134703 +} + +2023-02-26 20:04:57,839 INFO MainThread:5585 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47134703 + total_bytes: 47134703 +} + +2023-02-26 20:04:57,939 INFO MainThread:5585 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47134703 + total_bytes: 47134703 +} + +2023-02-26 20:04:58,040 INFO MainThread:5585 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47134703 + total_bytes: 47134703 +} + +2023-02-26 20:04:58,408 INFO MainThread:5585 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47134703 + total_bytes: 47134703 +} + +2023-02-26 20:04:58,585 INFO MainThread:5585 [wandb_run.py:_on_finish():1995] got exit ret: done: true +exit_result { +} +file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47134703 + total_bytes: 47134703 +} +local_info { +} + +2023-02-26 20:05:01,538 INFO MainThread:5585 [wandb_run.py:_footer_history_summary_info():3102] rendering history +2023-02-26 20:05:01,556 INFO MainThread:5585 [wandb_run.py:_footer_history_summary_info():3134] rendering summary +2023-02-26 20:05:01,569 INFO MainThread:5585 [wandb_run.py:_footer_sync_info():3057] logging synced files diff --git a/yolov5_model/wandb/run-20230226_192253-294etqct/run-294etqct.wandb b/yolov5_model/wandb/run-20230226_192253-294etqct/run-294etqct.wandb new file mode 100644 index 0000000000000000000000000000000000000000..8adefb4ba717c5136bbd10101200fbee7efd9df0 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_192253-294etqct/run-294etqct.wandb differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/conda-environment.yaml b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/config.yaml b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ff0143797748b4276e6aa74fd4d6c6ae56f962a5 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/config.yaml @@ -0,0 +1,177 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1677463961 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 2 + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 16 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 50 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: exp +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/exp15 +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 40 diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c0a2e51387052ffebe9c1e5786f4a9007b751f6 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Labels_0_86483f0d36733e5da8e0.jpg b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Labels_0_86483f0d36733e5da8e0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..377708dc9d6775b655f6cc29def3941cced5cc0e Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Labels_0_86483f0d36733e5da8e0.jpg differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..148344f8fbc5ff6b3dfd16674b21789c5e7b4593 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_424a5cb76a2816c2809d.jpg b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_424a5cb76a2816c2809d.jpg new file mode 100644 index 0000000000000000000000000000000000000000..705ac06d8f923ce19ccbaabda5566763faffa7ac Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_424a5cb76a2816c2809d.jpg differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..33f4363a18b0a13281628bd60da6bc62e3cfcdff Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png new file mode 100644 index 0000000000000000000000000000000000000000..850b5a86a6d7f348a122e435f25f07c8922076b2 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_2bc6164eef6abeb3a1be.png b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_2bc6164eef6abeb3a1be.png new file mode 100644 index 0000000000000000000000000000000000000000..d2f35653524bb6252c5edfd07db9482f707bc08d Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_2bc6164eef6abeb3a1be.png differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_936ab299b1fb8ad7120e.png b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_936ab299b1fb8ad7120e.png new file mode 100644 index 0000000000000000000000000000000000000000..d8d3124914434b83b6730db7a7ca719e512f5ad1 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_936ab299b1fb8ad7120e.png differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_96ae821d3fc27a86333d.png b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_96ae821d3fc27a86333d.png new file mode 100644 index 0000000000000000000000000000000000000000..ffab0c2c649651685adba0571f4458bb0b245e44 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_96ae821d3fc27a86333d.png differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_be732c353d7cd53b6a1d.png b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_be732c353d7cd53b6a1d.png new file mode 100644 index 0000000000000000000000000000000000000000..a6ce8d21f16f2b22b93568e61c42aa58bb9b80d0 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_be732c353d7cd53b6a1d.png differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_e1ef65811b62c5624f05.png b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_e1ef65811b62c5624f05.png new file mode 100644 index 0000000000000000000000000000000000000000..251334bcfe9ce37712e2dad4eb914ba33759d1e4 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_e1ef65811b62c5624f05.png differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_11f0e2769a75856f91d5.jpg b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_11f0e2769a75856f91d5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9f9f4a0b9a9c03d67e90ca128885b9dd79595403 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_11f0e2769a75856f91d5.jpg differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_286915e7e410f545982e.jpg b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_286915e7e410f545982e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..aefc8ac2c2634ef52ef876697d6377b9ba8f636b Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_286915e7e410f545982e.jpg differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_3abf58769b68af900cbd.jpg b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_3abf58769b68af900cbd.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8da5aa354e453a6e6845fb8a0adc6a4fe5424409 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_3abf58769b68af900cbd.jpg differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_73879ae5c6da6dbad3d9.jpg b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_73879ae5c6da6dbad3d9.jpg new file mode 100644 index 0000000000000000000000000000000000000000..94ede294ae29830b307ca9a1a5e451ac098cc46f Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_73879ae5c6da6dbad3d9.jpg differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_9cb35babf5c1234eead3.jpg b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_9cb35babf5c1234eead3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..95d6cf36b7f9b083df693be3e1b177e8d7a18909 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_9cb35babf5c1234eead3.jpg differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_e404c2d565b3a61e5a5b.jpg b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_e404c2d565b3a61e5a5b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1d8f08cbc272846354768353722e45298e93704 Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_e404c2d565b3a61e5a5b.jpg differ diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..5605d0b2b0890b319128220c695559c365ea0027 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log @@ -0,0 +1,1412 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Transferred 475/481 items from yolov5m.pt +[34m[1mAMP: [39m[22mchecks passed ✅ +[34m[1moptimizer:[39m[22m SGD(lr=0.01) with parameter groups 79 weight(decay=0.0), 82 weight(decay=0.0005), 82 bias +WARNING âš ï¸ DP not recommended, use torch.distributed.run for best DDP Multi-GPU results. +See Multi-GPU Tutorial at https://github.com/ultralytics/yolov5/issues/475 to get started. +[34m[1mtrain: [39m[22mScanning /projects/akhot2/group-01-phys371-sp2023/crop/data/train/labels.cache... 1001 images, 163 backgrounds, 0 corrupt: 100 +[34m[1mval: [39m[22mScanning /projects/akhot2/group-01-phys371-sp2023/crop/data/test/labels.cache... 249 images, 39 backgrounds, 0 corrupt: 100%|███ +[34m[1mAutoAnchor: [39m[22m5.94 anchors/target, 1.000 Best Possible Recall (BPR). Current anchors are a good fit to dataset ✅ +Plotting labels to runs/train/exp15/labels.jpg... +Image sizes 1280 train, 1280 val +Using 16 dataloader workers +Logging results to [1mruns/train/exp15 +Starting training for 50 epochs... + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + 0/49 13G 0.08853 0.05382 0 35 1280: 100%|██████████| 63/63 [01:22<00:00, 1.32s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.25it/ + all 249 604 0.364 0.696 0.43 0.128 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + 1/49 16G 0.0702 0.02651 0 36 1280: 100%|██████████| 63/63 [00:58<00:00, 1.07it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 2.84it/ + all 249 604 0.261 0.808 0.265 0.0927 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2/49 16G 0.06621 0.02049 0 33 1280: 100%|██████████| 63/63 [01:56<00:00, 1.85s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.62it/ + all 249 604 0.272 0.715 0.257 0.0703 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + 3/49 16G 0.05977 0.01767 0 54 1280: 100%|██████████| 63/63 [00:47<00:00, 1.33it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.85it/ + all 249 604 0.766 0.936 0.842 0.378 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4/49 16G 0.05096 0.01647 0 45 1280: 100%|██████████| 63/63 [01:48<00:00, 1.71s/it] + + + + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:08<00:00, 1.10s/i + all 249 604 0.862 0.969 0.971 0.488 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + 5/49 16G 0.04499 0.01469 0 25 1280: 100%|██████████| 63/63 [00:59<00:00, 1.07it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.55it/ + all 249 604 0.964 0.986 0.99 0.498 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + 6/49 16G 0.04063 0.01392 0 47 1280: 100%|██████████| 63/63 [00:59<00:00, 1.06it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.09it/ + all 249 604 0.998 0.997 0.995 0.711 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + 7/49 16G 0.03671 0.01373 0 33 1280: 100%|██████████| 63/63 [01:08<00:00, 1.09s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:04<00:00, 1.79it/ + all 249 604 0.998 0.997 0.995 0.573 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 8/49 16G 0.0349 0.01307 0 57 1280: 100%|██████████| 63/63 [01:34<00:00, 1.50s/it] + + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:07<00:00, 1.06it/ + all 249 604 1 0.997 0.995 0.601 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + + + + + + + + + + 9/49 16G 0.03255 0.01239 0 30 1280: 100%|██████████| 63/63 [01:10<00:00, 1.12s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.05it/ + all 249 604 1 0.998 0.995 0.733 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + + 10/49 16G 0.03023 0.01205 0 33 1280: 100%|██████████| 63/63 [00:52<00:00, 1.20it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.92it/ + all 249 604 1 0.997 0.995 0.743 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + 11/49 16G 0.02991 0.01051 0 49 1280: 8%|â–Š | 5/63 [00:03<00:29, 1.95it/s] + 11/49 16G 0.03009 0.01123 0 75 1280: 19%|█▉ | 12/63 [00:04<00:11, 4.59it/s] + 11/49 16G 0.03034 0.011 0 44 1280: 21%|██ | 13/63 [00:05<00:23, 2.09it/s] + 11/49 16G 0.03021 0.01108 0 67 1280: 22%|██■| 14/63 [00:09<01:08, 1.40s/it] + 11/49 16G 0.03044 0.01132 0 73 1280: 25%|██▌ | 16/63 [00:12<01:02, 1.33s/it] + 11/49 16G 0.03026 0.01138 0 60 1280: 29%|██▊ | 18/63 [00:17<01:19, 1.77s/it] + 11/49 16G 0.0296 0.01128 0 59 1280: 43%|████▎ | 27/63 [00:19<00:09, 3.89it/s] + 11/49 16G 0.02948 0.01145 0 68 1280: 46%|████▌ | 29/63 [00:20<00:16, 2.01it/s] + 11/49 16G 0.02946 0.01145 0 66 1280: 48%|████▊ | 30/63 [00:25<00:57, 1.75s/it] + 11/49 16G 0.02953 0.01145 0 56 1280: 51%|█████ | 32/63 [00:27<00:42, 1.38s/it] + 11/49 16G 0.02953 0.01145 0 74 1280: 57%|█████▋ | 36/63 [00:33<00:28, 1.05s/it] + 11/49 16G 0.02929 0.01138 0 53 1280: 65%|██████▌ | 41/63 [00:35<00:10, 2.05it/s] + 11/49 16G 0.02913 0.01132 0 57 1280: 68%|██████▊ | 43/63 [00:36<00:10, 1.96it/s] + 11/49 16G 0.02907 0.01136 0 75 1280: 70%|██████▉ | 44/63 [00:39<00:22, 1.20s/it] + 11/49 16G 0.02908 0.01145 0 79 1280: 73%|███████▎ | 46/63 [00:40<00:16, 1.03it/s] + 11/49 16G 0.02909 0.0114 0 61 1280: 76%|███████▌ | 48/63 [00:47<00:28, 1.89s/it] + 11/49 16G 0.02908 0.01139 0 67 1280: 78%|███████▊ | 49/63 [00:53<00:44, 3.16s/it] + 11/49 16G 0.02899 0.01127 0 49 1280: 87%|████████▋ | 55/63 [00:55<00:05, 1.44it/s] + 11/49 16G 0.02885 0.01115 0 62 1280: 97%|█████████▋| 61/63 [00:57<00:00, 2.64it/s] + 11/49 16G 0.02878 0.0112 0 40 1280: 100%|██████████| 63/63 [01:02<00:00, 1.00it/s] + 11/49 16G 0.02878 0.0112 0 40 1280: 100%|██████████| 63/63 [01:02<00:00, 1.00it/s] + all 249 604 1 0.997 0.995 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.678██████| 63/63 [01:02<00:00, 1.00it/s] + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s] + Class Images Instances P R mAP50 mAP50-95: 62%|██████▎ | 5/8 [00:02<00:01, 2.19it/ + 0%| | 0/63 [00:00<?, ?it/s]tances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.29it/ + 13/49 16G 0.02569 0.01104 0 77 1280: 2%|â– | 1/63 [00:03<03:34, 3.46s/it] 2.29it/ + 13/49 16G 0.02475 0.01084 0 63 1280: 3%|â–Ž | 2/63 [00:10<05:56, 5.85s/it] 2.29it/ + 13/49 16G 0.02369 0.01122 0 83 1280: 10%|â–‰ | 6/63 [00:17<01:32, 1.63s/it] 2.29it/ + 13/49 16G 0.02673 0.01153 0 64 1280: 14%|█■| 9/63 [00:19<00:57, 1.07s/it] 2.29it/ + 13/49 16G 0.02613 0.01092 0 74 1280: 22%|██■| 14/63 [00:23<00:32, 1.51it/s]2.29it/ + 13/49 16G 0.02642 0.01089 0 68 1280: 25%|██▌ | 16/63 [00:24<00:32, 1.44it/s]2.29it/ + 13/49 16G 0.02635 0.01088 0 64 1280: 29%|██▊ | 18/63 [00:27<00:49, 1.09s/it]2.29it/ + 13/49 16G 0.02597 0.01073 0 43 1280: 41%|████■| 26/63 [00:35<00:15, 2.40it/s]2.29it/ + 13/49 16G 0.02621 0.01083 0 73 1280: 44%|████■| 28/63 [00:37<00:25, 1.38it/s]2.29it/ + 13/49 16G 0.02624 0.01051 0 41 1280: 51%|█████ | 32/63 [00:39<00:14, 2.15it/s]2.29it/ + 13/49 16G 0.02618 0.0106 0 84 1280: 54%|█████■| 34/63 [00:40<00:16, 1.79it/s]2.29it/ + 13/49 16G 0.02619 0.01048 0 52 1280: 59%|█████▊ | 37/63 [00:55<01:02, 2.40s/it]2.29it/ + 13/49 16G 0.02617 0.01048 0 64 1280: 60%|██████ | 38/63 [00:56<00:49, 1.97s/it]2.29it/ + 13/49 16G 0.02617 0.01048 0 64 1280: 60%|██████ | 38/63 [00:56<00:49, 1.97s/it]2.29it/ + 13/49 16G 0.02617 0.01048 0 64 1280: 60%|██████ | 38/63 [00:56<00:49, 1.97s/it]2.29it/ + 13/49 16G 0.02617 0.01048 0 64 1280: 60%|██████ | 38/63 [00:56<00:49, 1.97s/it]2.29it/ + 13/49 16G 0.02617 0.01048 0 64 1280: 60%|██████ | 38/63 [00:56<00:49, 1.97s/it]2.29it/ + 13/49 16G 0.02617 0.01048 0 64 1280: 60%|██████ | 38/63 [00:56<00:49, 1.97s/it]2.29it/ + 13/49 16G 0.02617 0.01048 0 64 1280: 60%|██████ | 38/63 [00:56<00:49, 1.97s/it]2.29it/ + 13/49 16G 0.02617 0.01048 0 64 1280: 60%|██████ | 38/63 [00:56<00:49, 1.97s/it]2.29it/ + 13/49 16G 0.02617 0.01048 0 64 1280: 60%|██████ | 38/63 [00:56<00:49, 1.97s/it]2.29it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].29it/ + all 249 604 1 0.997 0.995 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.765: 0%| | 0/8 [00:00<?, ?it/s].29it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + all 249 604 1 0.997 0.995 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.792: 12%|█▎ | 1/8 [00:01<00:07, 1.05s/i + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].05s/i + all 249 604 1 0.997 0.995 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.754: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 0%| | 0/8 [00:00<?, ?it/s].05s/i + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.827: 38%|███▊ | 3/8 [00:00<00:01, 3.88it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].88it/ + all 249 604 1 0.997 0.995 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.808: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.751: 0%| | 0/8 [00:00<?, ?it/s].88it/ + all 249 604 0.999 0.997 0.995 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 0%| | 0/8 [00:00<?, ?it/s].88it/ + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.786: 25%|██▌ | 2/8 [00:00<00:02, 2.22it/ + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + all 249 604 0.999 0.997 0.995 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.834: 38%|███▊ | 3/8 [00:00<00:01, 3.76it/ + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.858: 50%|█████ | 4/8 [00:01<00:01, 3.81it/ + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + all 249 604 0.998 0.998 0.995 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.846: 38%|███▊ | 3/8 [00:00<00:01, 3.31it/ + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:01<00:01, 2.60it/ + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:01<00:01, 2.60it/ + 0%| | 0/63 [00:00<?, ?it/s]tances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:01<00:01, 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + 26/49 16G 0.02108 0.007933 0 52 1280: 2%|â– | 1/63 [00:09<09:39, 9.35s/it] 2.60it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 12%|█▎ | 1/8 [00:00<00:06, 1.17it/ + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.848: 38%|███▊ | 3/8 [00:00<00:01, 3.51it/ + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 75%|███████▌ | 6/8 [00:01<00:00, 3.82it/ + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + all 249 604 0.999 0.997 0.995 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.882: 38%|███▊ | 3/8 [00:01<00:01, 2.82it/ + Class Images Instances P R mAP50 mAP50-95: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.883: 62%|██████▎ | 5/8 [00:01<00:00, 3.61it/ + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + all 249 604 0.998 0.998 0.995 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.865: 38%|███▊ | 3/8 [00:00<00:01, 3.54it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + all 249 604 0.999 0.997 0.995 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.9: 12%|█▎ | 1/8 [00:00<00:04, 1.50it/ + Class Images Instances P R mAP50 mAP50-95: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.891: 88%|████████▊ | 7/8 [00:01<00:00, 3.67it/ + Class Images Instances P R mAP50 mAP50-95: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.893: 62%|██████▎ | 5/8 [00:01<00:00, 3.67it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].67it/ + all 249 604 1 0.998 0.995 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.897: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + all 249 604 1 0.998 0.995 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.56it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.904: 12%|█▎ | 1/8 [00:00<00:02, 2.68it/ + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.907: 38%|███▊ | 3/8 [00:00<00:01, 3.73it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].73it/ + all 249 604 1 0.998 0.995 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.906: 0%| | 0/8 [00:00<?, ?it/s].73it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + all 249 604 0.998 0.998 0.995 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.916: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.91: 12%|█▎ | 1/8 [00:00<00:04, 1.67it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].67it/ + all 249 604 0.998 0.998 0.995 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.917: 0%| | 0/8 [00:00<?, ?it/s].67it/ + Class Images Instances P R mAP50 mAP50-95: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.919: 88%|████████▊ | 7/8 [00:01<00:00, 4.10it/ + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.914: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 0%| | 0/8 [00:00<?, ?it/s].95it/ + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + all 249 604 0.998 0.998 0.995 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.929: 50%|█████ | 4/8 [00:01<00:01, 2.27it/ + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + all 249 604 0.998 0.998 0.995 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.924: 38%|███▊ | 3/8 [00:01<00:01, 2.66it/ + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:01<00:01, 3.71it/ +50 epochs completed in 1.089 hours. 604 0.998 0.998 0.995 0.927: 50%|█████ | 4/8 [00:01<00:01, 3.71it/ +Model summary: 212 layers, 20852934 parameters, 0 gradients, 47.9 GFLOPs0.995 0.927: 50%|█████ | 4/8 [00:01<00:01, 3.71it/ +Model summary: 212 layers, 20852934 parameters, 0 gradients, 47.9 GFLOPs0.995 0.927: 50%|█████ | 4/8 [00:01<00:01, 3.71it/ + all 249 604 0.998 0.998 0.995 0.935: 50%|█████ | 4/8 [00:01<00:01, 3.71it/ + all 249 604 0.998 0.998 0.995 0.935: 50%|█████ | 4/8 [00:01<00:01, 3.71it/ + all 249 604 0.998 0.998 0.995 0.935: 50%|█████ | 4/8 [00:01<00:01, 3.71it/ + all 249 604 0.998 0.998 0.995 0.935: 50%|█████ | 4/8 [00:01<00:01, 3.71it/ \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/requirements.txt b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-metadata.json b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..5da7a44084f2aaba1de565f6f0e65d931368263e --- /dev/null +++ b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-metadata.json @@ -0,0 +1,37 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-02-27T02:13:06.040094", + "startedAt": "2023-02-27T02:12:41.230934", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 2, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "16", + "--epochs", + "50", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt", + "--workers", + "40" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "4d70f4429752b1cbed4a5363ecf8c004a7a149a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..1767dc51f225482cd04d938949062a5bebbed8f2 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json @@ -0,0 +1 @@ +{"best/epoch": 46, "best/precision": 0.9979283413825942, "best/recall": 0.9983443708609272, "best/mAP_0.5": 0.995, "best/mAP_0.5:0.95": 0.9346385652116525, "Labels": {"_type": "images/separated", "width": 1600, "height": 1600, "format": "jpg", "count": 2, "filenames": ["media/images/Labels_0_86483f0d36733e5da8e0.jpg", "media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg"], "captions": ["labels.jpg", "labels_correlogram.jpg"]}, "Mosaics": {"_type": "images/separated", "width": 1920, "height": 1920, "format": "jpg", "count": 3, "filenames": ["media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg", "media/images/Mosaics_0_424a5cb76a2816c2809d.jpg", "media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg"], "captions": ["train_batch0.jpg", "train_batch1.jpg", "train_batch2.jpg"]}, "train/box_loss": 0.007257355842739344, "train/obj_loss": 0.005221783649176359, "train/cls_loss": 0.0, "metrics/precision": 0.9979343268306524, "metrics/recall": 0.9983443708609272, "metrics/mAP_0.5": 0.995, "metrics/mAP_0.5:0.95": 0.9346678478233932, "val/box_loss": 0.007243766915053129, "val/obj_loss": 0.005538821220397949, "val/cls_loss": 0.0, "x/lr0": 0.0004960000000000005, "x/lr1": 0.0004960000000000005, "x/lr2": 0.0004960000000000005, "_timestamp": 1677467939, "_runtime": 3978, "_step": 50, "Validation": {"_type": "images/separated", "width": 1268, "height": 1920, "format": "jpg", "count": 6, "filenames": ["media/images/Validation_50_e404c2d565b3a61e5a5b.jpg", "media/images/Validation_50_286915e7e410f545982e.jpg", "media/images/Validation_50_73879ae5c6da6dbad3d9.jpg", "media/images/Validation_50_9cb35babf5c1234eead3.jpg", "media/images/Validation_50_11f0e2769a75856f91d5.jpg", "media/images/Validation_50_3abf58769b68af900cbd.jpg"], "captions": ["val_batch0_labels.jpg", "val_batch0_pred.jpg", "val_batch1_labels.jpg", "val_batch1_pred.jpg", "val_batch2_labels.jpg", "val_batch2_pred.jpg"]}, "Results": {"_type": "images/separated", "width": 2400, "height": 1200, "format": "png", "count": 6, "filenames": ["media/images/Results_50_e1ef65811b62c5624f05.png", "media/images/Results_50_1919cd7ca3699dbfdb9c.png", "media/images/Results_50_2bc6164eef6abeb3a1be.png", "media/images/Results_50_936ab299b1fb8ad7120e.png", "media/images/Results_50_96ae821d3fc27a86333d.png", "media/images/Results_50_be732c353d7cd53b6a1d.png"], "captions": ["results.png", "confusion_matrix.png", "F1_curve.png", "PR_curve.png", "P_curve.png", "R_curve.png"]}, "_wandb": {"runtime": 3973}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/logs/debug-internal.log b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..92ce6f73bb7a3e74e008b9f2269ea8bce08903f7 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/logs/debug-internal.log @@ -0,0 +1,2681 @@ +2023-02-26 20:12:48,593 INFO MainThread:55420 [internal.py:wandb_internal():90] W&B internal server running at pid: 55420, started at: 2023-02-26 20:12:48.592443 +2023-02-26 20:12:48,598 INFO WriterThread:55420 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/run-i0ykd1a6.wandb +2023-02-26 20:12:48,604 DEBUG SenderThread:55420 [sender.py:send():232] send: header +2023-02-26 20:12:48,604 DEBUG SenderThread:55420 [sender.py:send():232] send: run +2023-02-26 20:12:48,614 INFO SenderThread:55420 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/i0ykd1a6 +2023-02-26 20:12:48,805 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: check_version +2023-02-26 20:12:48,815 INFO SenderThread:55420 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files +2023-02-26 20:12:48,815 INFO SenderThread:55420 [sender.py:_start_run_threads():811] run started: i0ykd1a6 with start time 1677463961 +2023-02-26 20:12:48,815 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:12:48,817 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:12:48,817 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: check_version +2023-02-26 20:12:48,862 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: run_start +2023-02-26 20:12:54,335 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:12:54,336 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:12:56,385 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:13:06,037 DEBUG HandlerThread:55420 [meta.py:__init__():35] meta init +2023-02-26 20:13:06,040 DEBUG HandlerThread:55420 [meta.py:__init__():49] meta init done +2023-02-26 20:13:06,040 DEBUG HandlerThread:55420 [meta.py:probe():209] probe +2023-02-26 20:13:06,052 DEBUG HandlerThread:55420 [meta.py:_setup_git():199] setup git +2023-02-26 20:13:06,097 DEBUG HandlerThread:55420 [meta.py:_setup_git():206] setup git done +2023-02-26 20:13:06,097 DEBUG HandlerThread:55420 [meta.py:_save_pip():53] save pip +2023-02-26 20:13:06,100 DEBUG HandlerThread:55420 [meta.py:_save_pip():67] save pip done +2023-02-26 20:13:06,100 DEBUG HandlerThread:55420 [meta.py:_save_conda():74] save conda +2023-02-26 20:13:06,679 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/conda-environment.yaml +2023-02-26 20:13:06,684 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/requirements.txt +2023-02-26 20:13:13,902 DEBUG HandlerThread:55420 [meta.py:_save_conda():84] save conda done +2023-02-26 20:13:13,903 DEBUG HandlerThread:55420 [meta.py:probe():247] probe done +2023-02-26 20:13:13,953 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:13:13,956 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:13:14,007 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/conda-environment.yaml +2023-02-26 20:13:14,008 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-metadata.json +2023-02-26 20:13:14,111 DEBUG SenderThread:55420 [sender.py:send():232] send: telemetry +2023-02-26 20:13:14,111 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 20:13:14,113 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-02-26 20:13:14,137 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:13:14,137 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:13:14,891 INFO Thread-11 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/1vmoee0d-wandb-metadata.json +2023-02-26 20:13:15,042 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:13:20,178 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/config.yaml +2023-02-26 20:13:21,168 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:13:23,171 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:13:25,184 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:13:29,325 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:13:29,326 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:13:31,206 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:13:37,597 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:13:44,538 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:13:44,541 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:13:59,685 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:13:59,687 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:14:11,777 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:14:14,875 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:14:14,876 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:14:15,804 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:17,806 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:19,809 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:21,811 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:23,813 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:25,848 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:27,849 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:30,009 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:14:30,010 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:14:35,867 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:37,872 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:39,874 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:43,909 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:14:45,977 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:14:45,986 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:14:49,956 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:51,958 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:53,964 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:55,691 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:14:55,692 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:14:55,693 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:14:55,694 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:14:55,694 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:14:55,695 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:14:55,695 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:14:55,695 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:14:55,696 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:14:55,696 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:14:55,890 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 20:14:55,890 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Labels_0_86483f0d36733e5da8e0.jpg with policy now +2023-02-26 20:14:55,896 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 20:14:55,896 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg with policy now +2023-02-26 20:14:55,970 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:55,971 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:14:55,971 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Labels_0_86483f0d36733e5da8e0.jpg +2023-02-26 20:14:55,971 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg +2023-02-26 20:14:55,971 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media +2023-02-26 20:14:55,971 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images +2023-02-26 20:14:55,993 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 20:14:55,994 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg with policy now +2023-02-26 20:14:56,000 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 20:14:56,000 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Mosaics_0_424a5cb76a2816c2809d.jpg with policy now +2023-02-26 20:14:56,006 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 20:14:56,006 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg with policy now +2023-02-26 20:14:56,148 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:14:56,151 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:14:56,151 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:14:56,153 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:14:56,249 INFO Thread-12 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/1ie4lfvs-media/images/Labels_0_86483f0d36733e5da8e0.jpg +2023-02-26 20:14:56,278 INFO Thread-13 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/1wd8ysrh-media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg +2023-02-26 20:14:56,356 INFO Thread-14 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/3jpqgxzr-media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg +2023-02-26 20:14:56,378 INFO Thread-15 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/3osgwc5x-media/images/Mosaics_0_424a5cb76a2816c2809d.jpg +2023-02-26 20:14:56,398 INFO Thread-16 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/1cmeke6w-media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg +2023-02-26 20:14:56,977 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:14:56,977 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_424a5cb76a2816c2809d.jpg +2023-02-26 20:14:56,977 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg +2023-02-26 20:14:56,977 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg +2023-02-26 20:14:56,978 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images +2023-02-26 20:14:57,979 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:14:59,985 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:01,183 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:15:01,185 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:15:08,005 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:10,009 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:12,015 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:14,040 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:16,196 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:15:16,301 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:15:16,303 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:15:24,058 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:26,061 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:28,093 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:31,407 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:15:31,409 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:15:40,175 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:42,178 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:44,181 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:46,598 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:15:46,600 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:15:48,382 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:15:56,240 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:58,301 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:15:58,818 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:15:58,820 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:15:58,820 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:15:58,826 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:15:59,315 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:16:00,317 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:01,691 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:16:01,693 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:16:02,354 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:13,379 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:15,387 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:16,820 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:16:16,823 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:16:19,728 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:21,899 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:23,033 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:16:25,961 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:28,250 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:30,262 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:32,027 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:16:32,039 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:16:32,404 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:34,524 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:37,605 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:39,843 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:41,954 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:44,024 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:46,193 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:47,231 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:16:47,239 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:16:52,311 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:54,442 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:56,464 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:16:58,234 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:16:58,545 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:00,577 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:02,766 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:17:02,767 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:17:02,791 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:04,985 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:07,068 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:11,262 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:15,329 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:17,350 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:17,899 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:17:17,905 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:17:19,474 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:21,564 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:24,768 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:26,781 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:28,888 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:32,953 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:33,180 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:17:33,181 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:17:33,423 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:17:35,145 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:37,151 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:39,199 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:43,732 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:47,916 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:48,307 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:17:48,308 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:17:49,926 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:51,959 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:55,984 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:58,001 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:17:59,011 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:17:59,012 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:17:59,012 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:17:59,013 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:18:00,007 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:00,012 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:18:02,020 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:03,480 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:18:03,505 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:18:04,025 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:06,061 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:07,730 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:18:08,072 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:10,076 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:12,080 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:14,085 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:16,089 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:18,103 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:18,664 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:18:18,666 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:18:20,118 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:24,130 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:28,229 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:30,312 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:32,337 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:33,766 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:18:33,800 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:18:34,342 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:36,395 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:40,314 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:18:42,462 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:44,465 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:46,470 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:48,477 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:48,875 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:18:48,875 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:18:49,442 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:18:49,444 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:18:49,444 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:18:49,444 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:18:49,445 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:18:49,446 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:18:49,446 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:18:49,447 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:18:49,448 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:18:49,448 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:18:49,449 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:18:49,449 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:18:49,449 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:18:49,450 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:18:49,479 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:18:50,480 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:52,490 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:54,493 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:18:56,504 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:00,552 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:02,574 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:04,020 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:19:04,022 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:19:04,581 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:06,587 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:08,648 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:12,663 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:13,047 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:19:18,723 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:19,171 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:19:19,171 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:19:20,725 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:22,732 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:24,747 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:26,750 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:30,766 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:32,771 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:34,320 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:19:34,321 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:19:34,780 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:36,789 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:41,759 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:46,979 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:19:48,304 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:19:49,454 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:19:49,454 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:19:57,085 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:03,370 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:04,875 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:20:04,876 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:20:09,471 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:11,961 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:16,168 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:20,182 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:20:20,186 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:20:21,284 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:23,624 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:20:27,979 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:31,296 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:35,535 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:20:35,537 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:20:36,466 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:38,472 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:40,852 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:42,907 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:43,909 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:46,215 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:47,950 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:20:47,953 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:20:47,953 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:20:47,954 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:20:47,955 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:20:47,955 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:20:47,956 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:20:47,956 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:20:47,957 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:20:47,957 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:20:47,958 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:20:47,959 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:20:47,959 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:20:47,960 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:20:48,315 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:48,315 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:20:50,342 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:50,781 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:20:50,783 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:20:52,386 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:54,378 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:58,679 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:20:58,691 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:21:04,794 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:06,149 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:21:06,151 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:21:11,096 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:13,102 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:15,105 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:17,148 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:19,282 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:21,294 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:21,318 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:21:21,319 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:21:23,293 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:25,339 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:27,407 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:29,420 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:31,426 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:31,937 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:21:33,452 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:36,433 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:21:36,434 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:21:37,469 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:39,478 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:41,482 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:45,497 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:47,498 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:49,501 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:50,362 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:21:50,365 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:21:50,366 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:21:50,367 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:21:50,368 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:21:50,368 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:21:50,369 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:21:50,369 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:21:50,370 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:21:50,370 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:21:50,371 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:21:50,371 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:21:50,372 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:21:50,372 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:21:50,507 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:21:51,504 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:21:51,505 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:21:51,514 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:53,517 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:55,523 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:21:57,530 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:03,546 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:04,100 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:22:05,548 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:06,594 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:22:06,597 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:22:07,555 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:09,558 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:11,564 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:13,568 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:17,575 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:19,582 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:21,583 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:21,693 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:22:21,694 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:22:25,600 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:27,604 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:29,623 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:33,644 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:35,652 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:36,443 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:22:36,791 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:22:36,791 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:22:37,655 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:41,681 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:43,690 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:49,702 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:51,705 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:51,898 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:22:51,898 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:22:52,649 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:22:52,651 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:22:52,652 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:22:52,652 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:22:52,653 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:22:52,653 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:22:52,654 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:22:52,654 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:22:52,655 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:22:52,655 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:22:52,656 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:22:52,656 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:22:52,656 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:22:52,657 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:22:52,709 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:22:53,712 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:55,715 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:57,720 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:22:59,727 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:05,743 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:06,985 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:23:06,985 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:23:07,747 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:08,661 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:23:09,751 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:11,758 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:13,780 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:15,783 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:22,004 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:22,113 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:23:22,113 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:23:24,131 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:27,194 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:29,339 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:31,389 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:33,432 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:35,435 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:37,475 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:37,555 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:23:37,556 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:23:41,773 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:23:43,563 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:45,566 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:51,824 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:52,941 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:23:52,945 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:23:56,071 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:23:58,132 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:02,204 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:04,211 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:06,244 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:07,090 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:24:07,091 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:24:07,092 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:24:07,094 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:24:07,299 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:24:08,081 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:24:08,081 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:24:08,332 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:10,351 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:14,904 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:15,935 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:24:19,009 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:23,273 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:24:23,285 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:24:24,368 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:28,604 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:30,631 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:32,704 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:34,899 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:38,545 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:24:38,548 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:24:41,337 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:43,341 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:45,349 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:47,361 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:49,460 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:49,847 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:24:53,900 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:24:53,903 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:24:55,740 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:57,913 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:24:59,966 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:02,245 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:04,424 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:06,429 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:08,675 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:09,468 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:25:09,473 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:25:10,715 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:12,729 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:14,882 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:18,986 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:22,247 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:24,738 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:25:24,742 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:25:25,890 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:25:26,792 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:30,881 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:33,122 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:37,289 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:39,860 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:25:39,861 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:25:41,381 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:45,413 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:47,433 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:49,492 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:50,196 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:25:50,198 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:25:50,198 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:25:50,202 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:25:50,560 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:25:51,564 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:53,656 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:55,430 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:25:55,434 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:25:55,682 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:57,808 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:25:59,857 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:00,141 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:26:01,892 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:03,966 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:06,028 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:08,084 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:10,138 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:10,514 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:26:10,515 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:26:12,132 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:14,138 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:16,170 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:18,180 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:20,194 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:22,306 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:25,609 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:26:25,613 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:26:26,267 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:30,369 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:34,383 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:35,455 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:26:36,387 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:38,412 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:40,423 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:40,701 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:26:40,702 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:26:42,430 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:46,454 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:48,566 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:52,771 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:55,812 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:26:55,815 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:26:56,818 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:26:58,824 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:00,828 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:02,833 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:04,242 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:04,243 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:27:04,245 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:27:04,245 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:04,246 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:27:04,246 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:04,247 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:27:04,247 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:04,248 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:27:04,248 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:04,249 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:27:04,249 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:27:04,249 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:04,250 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:27:04,838 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:04,840 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:27:06,843 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:08,878 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:09,638 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:27:10,880 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:10,922 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:27:10,922 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:27:12,886 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:16,896 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:18,900 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:20,911 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:24,936 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:26,007 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:27:26,008 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:27:28,945 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:32,955 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:34,969 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:36,979 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:40,993 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:41,102 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:27:41,103 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:27:42,070 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:27:43,000 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:47,011 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:49,017 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:51,037 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:53,041 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:56,193 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:27:56,194 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:27:57,108 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:59,110 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:27:59,845 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:59,848 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:27:59,850 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:27:59,850 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:59,851 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:27:59,851 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:59,852 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:27:59,852 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:59,853 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:27:59,854 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:59,854 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:27:59,855 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:27:59,855 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:27:59,856 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:28:00,113 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:28:01,115 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:03,119 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:05,127 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:07,131 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:09,134 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:11,138 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:11,276 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:28:11,277 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:28:14,079 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:28:15,145 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:19,151 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:21,154 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:23,157 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:26,326 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:28:26,326 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:28:27,166 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:31,173 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:35,181 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:37,200 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:39,242 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:41,333 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:41,453 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:28:41,453 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:28:43,345 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:47,011 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:28:49,505 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:55,803 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:56,617 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:28:56,618 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:28:57,774 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:28:59,784 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:05,820 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:07,861 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:08,498 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:29:08,500 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:29:08,502 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:29:08,506 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:29:08,875 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:29:10,015 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:11,812 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:29:11,813 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:29:12,025 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:14,048 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:16,165 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:18,367 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:20,054 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:29:22,438 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:24,479 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:26,947 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:29:26,950 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:29:31,670 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:33,927 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:38,169 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:40,292 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:42,056 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:29:42,057 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:29:42,257 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:44,348 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:50,382 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:52,394 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:53,648 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:29:54,402 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:29:57,305 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:29:57,308 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:30:00,539 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:10,809 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:12,516 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:30:12,517 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:30:12,816 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:14,855 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:14,906 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:30:14,907 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:30:14,908 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:30:14,910 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:30:15,870 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:30:17,021 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:20,888 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:27,669 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:27,757 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:30:27,758 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:30:29,337 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:30:33,917 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:35,984 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:40,003 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:42,104 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:43,094 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:30:43,095 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:30:44,123 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:52,529 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:53,548 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:55,681 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:57,776 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:30:58,167 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:30:58,299 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:31:03,256 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:31:12,178 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:13,549 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:31:13,553 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:31:14,254 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:16,407 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:18,441 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:20,574 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:22,647 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:24,661 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:28,635 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:31:28,636 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:31:32,947 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:34,999 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:37,009 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:37,416 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:31:39,115 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:41,221 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:43,244 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:43,255 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:31:43,257 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:31:43,259 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:31:43,259 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:31:43,260 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:31:43,260 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:31:43,262 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:31:43,262 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:31:43,265 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:31:43,265 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:31:43,267 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:31:43,267 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:31:43,267 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:31:43,270 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:31:44,034 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:31:44,037 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:31:44,375 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:31:45,380 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:47,652 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:48,658 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:50,714 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:54,753 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:56,850 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:58,872 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:31:59,104 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:31:59,127 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:32:00,956 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:02,963 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:11,957 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:32:13,442 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:14,372 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:32:14,372 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:32:19,853 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:21,957 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:23,990 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:26,169 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:28,459 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:29,650 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:32:29,653 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:32:30,466 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:32,502 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:34,533 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:36,856 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:42,035 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:44,044 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:44,835 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:32:44,836 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:32:46,093 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:47,274 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:32:48,101 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:50,105 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:52,226 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:54,312 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:56,436 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:32:58,541 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:00,234 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:33:00,318 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:33:02,684 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:04,962 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:07,057 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:11,475 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:15,408 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:33:15,416 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:33:15,541 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:16,613 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:18,705 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:20,053 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:33:20,056 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:33:20,056 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:33:20,058 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:33:20,059 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:33:20,059 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:33:20,060 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:33:20,060 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:33:20,061 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:33:20,061 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:33:20,063 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:33:20,063 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:33:20,063 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:33:20,064 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:33:20,821 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:20,821 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:33:21,874 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:33:22,969 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:26,983 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:28,988 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:30,550 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:33:30,551 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:33:31,057 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:33,154 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:35,160 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:37,166 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:41,188 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:43,332 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:45,371 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:45,790 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:33:45,790 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:33:47,455 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:49,570 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:51,495 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:53,516 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:55,529 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:55,944 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:33:57,535 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:33:59,563 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:01,190 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:34:01,196 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:34:05,742 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:07,745 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:11,805 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:13,845 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:15,962 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:16,329 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:34:16,347 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:34:17,974 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:20,053 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:22,085 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:22,908 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:34:22,910 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:34:22,912 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:34:22,913 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:34:23,111 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:34:24,209 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:26,222 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:28,331 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:29,901 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:34:31,463 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:34:31,465 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:34:32,360 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:34,366 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:36,438 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:38,441 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:40,459 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:42,463 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:44,468 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:46,475 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:46,595 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:34:46,596 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:34:48,477 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:50,567 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:52,571 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:54,578 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:34:56,638 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:00,684 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:02,698 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:02,705 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:35:04,562 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:35:04,565 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:35:06,715 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:08,727 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:10,738 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:14,761 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:18,790 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:19,671 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:35:19,671 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:35:22,797 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:24,800 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:26,057 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:35:26,059 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:35:26,061 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:35:26,061 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:35:26,063 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:35:26,063 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:35:26,064 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:35:26,064 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:35:26,065 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:35:26,066 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:35:26,067 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:35:26,067 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:35:26,067 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:35:26,068 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:35:26,808 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:26,809 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:35:28,814 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:30,837 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:34,750 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:35:34,751 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:35:34,847 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:35,156 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:35:38,873 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:40,876 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:42,880 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:46,886 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:48,890 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:50,158 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:35:50,159 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:35:50,896 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:52,900 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:54,903 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:35:56,907 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:00,913 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:04,921 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:05,222 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:36:05,222 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:36:06,924 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:36:08,929 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:10,932 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:12,936 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:16,942 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:18,946 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:20,520 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:36:20,520 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:36:22,952 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:26,930 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:36:26,931 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:36:26,932 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:36:26,933 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:36:26,933 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:36:26,934 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:36:26,934 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:36:26,935 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:36:26,936 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:36:26,936 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:36:26,937 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:36:26,937 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:36:26,937 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:36:26,938 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:36:26,960 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:26,961 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:36:28,964 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:30,967 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:32,971 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:34,976 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:35,568 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:36:35,569 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:36:38,761 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:36:38,982 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:40,986 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:42,989 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:46,996 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:48,999 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:50,621 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:36:50,621 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:36:51,003 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:53,006 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:55,009 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:36:57,013 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:37:01,123 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:37:05,709 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:37:05,713 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:37:07,139 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:37:09,142 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:37:10,948 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:37:13,337 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:37:15,555 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:37:21,296 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:37:21,303 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:37:30,150 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:37:38,001 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:37:38,005 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:37:45,501 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:37:49,161 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:37:53,203 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:37:53,205 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:37:57,846 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:03,543 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:09,015 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:38:09,017 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:38:11,241 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:17,809 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:24,162 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:38:24,165 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:38:27,462 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:38:28,946 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:31,055 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:33,393 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:37,634 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:39,666 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:38:39,666 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:38:40,651 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:42,696 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:47,370 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:48,342 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:38:48,344 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:38:48,345 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:38:48,401 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:38:48,648 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:38:49,697 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:51,773 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:38:55,004 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:38:55,004 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:38:57,295 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:01,546 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:03,598 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:04,034 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:39:08,105 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:10,317 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:39:10,323 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:39:12,039 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:16,076 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:18,162 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:20,139 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:22,191 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:24,307 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:25,397 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:39:25,398 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:39:26,395 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:28,406 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:30,416 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:32,619 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:34,697 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:36,746 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:37,948 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:39:38,938 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:40,514 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:39:40,515 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:39:41,114 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:43,184 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:46,432 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:48,435 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:50,598 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:52,659 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:54,689 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:55,808 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:39:55,811 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:39:56,859 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:39:59,016 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:01,019 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:03,031 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:03,059 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:40:03,060 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:40:03,061 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:40:03,065 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:40:04,037 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:40:05,043 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:09,189 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:11,300 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:11,354 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:40:11,355 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:40:12,341 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:40:13,244 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:15,391 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:17,511 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:21,526 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:25,689 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:26,467 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:40:26,578 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:40:27,613 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:31,630 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:33,840 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:35,859 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:37,904 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:41,701 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:40:41,703 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:40:41,931 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:43,959 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:46,037 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:46,263 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:40:48,042 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:52,052 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:54,082 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:56,162 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:40:56,763 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:40:56,764 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:40:58,270 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:00,281 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:02,391 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:04,415 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:06,426 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:08,440 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:10,537 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:11,877 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:41:11,880 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:41:12,542 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:14,671 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:16,738 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:18,776 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:19,622 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:41:20,891 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:23,084 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:25,091 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:27,058 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:41:27,058 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:41:27,155 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:27,202 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:41:27,204 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:41:27,205 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:41:27,205 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:41:27,207 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:41:27,207 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:41:27,208 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:41:27,208 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:41:27,210 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:41:27,210 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:41:27,211 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:41:27,211 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:41:27,211 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:41:27,213 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:41:28,159 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:41:29,163 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:31,169 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:33,332 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:34,332 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:37,364 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:39,369 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:41,388 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:42,160 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:41:42,176 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:41:43,391 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:45,395 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:47,437 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:49,472 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:51,475 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:52,800 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:41:53,481 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:55,487 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:41:57,304 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:41:57,308 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:41:59,513 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:05,764 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:06,763 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:08,803 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:10,914 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:12,695 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:42:12,697 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:42:12,919 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:15,040 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:17,052 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:20,122 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:24,240 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:25,243 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:25,999 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:42:27,326 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:27,994 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:42:27,995 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:42:29,401 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:31,409 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:31,863 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:42:31,864 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:42:31,865 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:42:31,866 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:42:32,414 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:42:33,422 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:35,495 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:37,459 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:39,461 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:41,464 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:43,068 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:42:43,069 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:42:43,470 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:45,475 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:49,482 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:51,485 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:55,518 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:57,521 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:42:58,151 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:42:58,152 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:42:58,410 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:42:59,545 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:01,549 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:05,558 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:07,575 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:09,566 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:13,239 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:43:13,240 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:43:13,574 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:15,590 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:17,585 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:21,596 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:23,599 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:25,603 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:28,331 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:43:28,334 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:43:29,626 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:30,488 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:43:32,628 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:32,793 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:43:32,794 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:43:32,795 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:43:32,796 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:43:33,629 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:43:34,632 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:36,643 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:37,660 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:40,701 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:43,420 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:43:43,422 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:43:43,703 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:45,709 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:47,754 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:49,757 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:53,767 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:55,771 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:57,786 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:43:58,509 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:43:58,510 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:44:01,795 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:02,783 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:44:03,800 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:05,806 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:09,814 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:11,819 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:13,590 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:44:13,591 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:44:13,823 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:18,836 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:20,843 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:26,965 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:28,818 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:44:28,819 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:44:28,968 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:31,001 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:34,007 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:34,893 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:44:36,011 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:36,526 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:44:36,528 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:44:36,528 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:44:36,530 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:44:37,013 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:44:38,015 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:40,020 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:43,897 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:44:43,900 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:44:44,085 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:46,089 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:50,101 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:52,103 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:54,118 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:44:59,061 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:44:59,063 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:45:00,187 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:02,212 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:07,224 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:07,266 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:45:09,280 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:10,284 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:14,194 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:45:14,206 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:45:16,341 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:18,343 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:24,356 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:26,362 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:28,398 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:29,399 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:45:29,400 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:45:32,435 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:34,444 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:39,490 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:45:40,617 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:42,620 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:44,112 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:45:44,114 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:45:44,115 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:45:44,117 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:45:44,526 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:45:44,527 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:45:44,630 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:44,630 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:45:46,711 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:48,727 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:50,738 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:52,747 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:56,909 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:45:59,725 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:45:59,727 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:46:00,967 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:03,005 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:05,012 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:07,013 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:09,026 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:11,026 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:11,830 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:46:13,032 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:14,824 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:46:14,824 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:46:15,037 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:17,042 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:24,229 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:30,233 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:46:30,236 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:46:34,601 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:46,238 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:46:46,242 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:46:51,029 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:46:53,005 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:55,220 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:57,427 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:46:59,742 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:47:01,774 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:47:01,775 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:47:05,400 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:47:16,652 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:47:17,206 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:47:17,206 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:47:24,639 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:47:30,307 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:47:31,021 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:47:33,175 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:47:33,178 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:47:34,636 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:47:43,806 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:47:48,459 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:47:48,471 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:47:51,584 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:47:58,289 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:00,295 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:02,369 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:03,139 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:48:03,141 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:48:03,142 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:48:03,146 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:48:03,378 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:48:03,962 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:48:03,966 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:48:04,477 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:06,484 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:08,585 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:48:16,914 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:19,066 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:48:19,067 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:48:20,068 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:27,965 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:30,022 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:31,025 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:34,147 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:34,559 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:48:34,560 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:48:36,150 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:38,343 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:40,336 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:42,344 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:43,727 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:48:44,377 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:46,402 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:48,489 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:49,677 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:48:49,678 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:48:50,610 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:52,689 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:54,744 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:56,769 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:48:58,869 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:00,937 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:02,942 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:04,950 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:05,125 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:49:05,125 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:49:07,041 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:09,078 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:13,130 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:15,159 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:17,362 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:49:19,199 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:20,346 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:49:20,364 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:49:21,293 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:22,295 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:25,421 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:26,421 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:26,597 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:49:26,598 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:49:26,599 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:49:26,697 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:49:27,484 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:49:29,639 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:32,791 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:34,794 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:35,495 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:49:35,495 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:49:36,798 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:38,863 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:40,963 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:42,969 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:45,037 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:49,207 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:50,321 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:49:50,603 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:49:50,603 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:49:53,348 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:57,363 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:49:59,365 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:01,393 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:05,402 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:05,761 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:50:05,762 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:50:07,405 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:09,440 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:11,440 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:13,444 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:15,492 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:17,497 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:20,818 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:50:20,820 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:50:21,504 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:22,635 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:50:23,507 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:25,523 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:27,589 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:29,517 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:50:29,522 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:50:29,523 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:50:29,525 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:50:29,618 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:29,618 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:50:31,626 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:33,634 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:35,955 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:50:35,955 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:50:37,642 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:39,645 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:41,652 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:45,696 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:47,700 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:49,706 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:51,086 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:50:51,087 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:50:53,736 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:54,993 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:50:55,757 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:50:57,761 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:01,771 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:03,779 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:06,168 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:51:06,169 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:51:07,783 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:11,792 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:13,796 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:15,799 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:17,803 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:19,807 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:21,251 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:51:21,251 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:51:23,812 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:27,002 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:51:27,820 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:29,822 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:31,826 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:33,708 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:51:33,709 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:51:33,710 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:51:33,711 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:51:33,712 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:51:33,712 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:51:33,713 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:51:33,713 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:51:33,714 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:51:33,714 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:51:33,715 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:51:33,715 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:51:33,715 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:51:33,716 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:51:33,837 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:33,837 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:51:35,846 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:36,321 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:51:36,322 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:51:37,850 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:39,876 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:41,882 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:43,887 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:45,889 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:47,892 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:49,929 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:51,415 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:51:51,417 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:51:51,941 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:56,017 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:58,024 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:51:59,564 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:52:00,031 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:02,117 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:06,519 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:52:06,525 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:52:08,656 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:10,659 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:12,683 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:14,710 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:16,712 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:18,734 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:20,768 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:21,835 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:52:21,836 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:52:25,928 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:27,973 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:30,058 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:32,063 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:32,955 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:52:36,926 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:52:37,042 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:52:38,425 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:46,582 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:48,734 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:49,229 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:52:49,230 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:52:49,230 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:52:49,244 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:52:49,737 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:52:50,741 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:52,447 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:52:52,454 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:52:52,791 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:54,883 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:57,014 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:52:58,999 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:01,022 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:03,057 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:05,063 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:07,168 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:53:07,171 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:07,979 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:53:07,986 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:53:09,219 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:13,246 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:15,272 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:19,361 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:23,319 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:53:23,321 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:53:25,742 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:27,753 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:29,955 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:31,990 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:34,015 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:36,033 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:38,075 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:38,501 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:53:38,503 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:53:40,084 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:41,828 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:53:42,089 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:44,100 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:46,142 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:48,238 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:52,256 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:53,788 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:53:53,819 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:53:54,279 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:58,291 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:53:59,922 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:53:59,923 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:53:59,923 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:53:59,925 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:54:00,307 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:00,308 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:54:02,603 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:03,550 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:05,696 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:09,031 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:54:09,035 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:54:09,708 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:11,712 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:13,721 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:14,780 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:54:15,726 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:17,731 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:21,783 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:23,795 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:24,151 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:54:24,152 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:54:25,814 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:27,818 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:29,910 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:33,925 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:35,940 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:39,251 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:54:39,251 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:54:41,976 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:43,976 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:48,037 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:50,070 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:50,545 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:54:52,073 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:54,080 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:58,245 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:54:59,254 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:54:59,255 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:55:02,249 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:04,255 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:05,013 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:55:05,014 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:55:05,015 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:55:05,017 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:55:05,259 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:55:06,262 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:08,265 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:10,279 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:14,305 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:14,469 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:55:14,469 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:55:18,341 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:19,764 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:55:22,352 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:24,355 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:26,620 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:29,734 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:55:29,737 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:55:44,358 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:45,410 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:45,723 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:55:45,724 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:55:48,652 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:51,859 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:54,003 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:56,339 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:55:58,913 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:56:00,360 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:00,866 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:56:00,867 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:56:02,455 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:06,581 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:08,593 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:10,839 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:12,886 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:16,052 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:56:16,056 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:56:19,904 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:22,943 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:29,140 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:31,560 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:56:31,566 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:56:33,350 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:35,638 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:36,462 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:56:37,431 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:45,789 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:46,816 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:56:46,817 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:56:50,079 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:54,238 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:56,291 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:56:58,376 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:00,426 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:02,183 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:57:02,184 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:57:02,428 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:02,871 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:57:02,875 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:57:02,891 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:57:02,891 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:57:02,895 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:57:02,896 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:57:02,897 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:57:02,897 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:57:02,898 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:57:02,898 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:57:02,900 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:57:02,900 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:57:02,901 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:57:02,902 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:57:03,436 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:57:04,445 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:06,458 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:08,542 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:10,544 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:11,126 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:57:12,549 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:14,576 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:16,582 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:17,253 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:57:17,253 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:57:18,586 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:24,600 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:26,609 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:28,614 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:30,633 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:32,362 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:57:32,363 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:57:32,636 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:40,673 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:42,678 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:43,813 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:57:46,687 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:47,428 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:57:47,429 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:57:47,893 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:57:47,896 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:57:47,897 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:57:47,901 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:57:48,693 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:48,695 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:57:50,698 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:56,714 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:57:58,730 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:00,734 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:02,571 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:58:02,573 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:58:02,741 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:04,748 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:12,780 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:14,781 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:16,223 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:58:16,785 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:17,648 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:58:17,648 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:58:18,788 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:20,792 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:28,854 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:30,856 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:32,734 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:58:32,735 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:58:32,862 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:34,890 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:36,892 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:44,916 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:46,921 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:47,820 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:58:47,820 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:58:48,448 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:58:48,922 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:50,929 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:52,625 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 20:58:52,627 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 20:58:52,627 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 20:58:52,628 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 20:58:52,933 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:58:52,933 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 20:58:54,937 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:01,205 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:03,041 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:59:03,045 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:59:05,246 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:07,282 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:09,342 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:11,438 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:13,479 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:15,584 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:17,741 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:18,266 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:59:18,266 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:59:19,677 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:21,725 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:59:21,727 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:23,901 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:25,988 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:30,374 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:32,416 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:33,415 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:59:33,416 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:59:36,575 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:38,635 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:42,805 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:47,022 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:48,485 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 20:59:48,487 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 20:59:49,265 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:51,269 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:55,297 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:57,102 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 20:59:57,304 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 20:59:59,394 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:01,530 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:03,557 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:03,841 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:00:03,842 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:00:05,693 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:07,824 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:09,865 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:12,024 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:16,194 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:18,966 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:00:18,967 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:00:22,371 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:26,396 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:29,609 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:32,233 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:00:33,925 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:34,356 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:00:34,356 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:00:36,094 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:38,129 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:40,134 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:42,177 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:44,274 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:44,830 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:00:44,832 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:00:44,832 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:00:44,834 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:00:45,277 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:00:46,279 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:48,342 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:49,470 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:00:49,471 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:00:50,428 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:00:57,030 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:01,124 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:03,269 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:05,104 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:01:05,109 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:01:05,445 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:06,450 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:06,579 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:01:09,519 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:11,658 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:15,958 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:19,255 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:20,276 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:01:20,281 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:01:23,548 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:25,551 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:27,611 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:29,665 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:31,674 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:33,678 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:35,678 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:01:35,679 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:01:35,683 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:37,790 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:39,802 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:40,150 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:01:41,807 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:43,856 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:45,882 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:48,119 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:50,772 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:01:50,774 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:01:51,124 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:54,226 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:56,246 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:58,252 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:01:59,153 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:01:59,159 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:01:59,160 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:01:59,161 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:01:59,162 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:01:59,162 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:01:59,163 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:01:59,163 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:01:59,164 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:01:59,164 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:01:59,165 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:01:59,165 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:01:59,165 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:01:59,166 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:01:59,257 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:02:00,258 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:02,331 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:04,377 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:05,905 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:02:05,906 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:02:06,379 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:08,438 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:10,572 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:12,609 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:13,443 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:02:14,687 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:18,734 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:20,798 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:21,025 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:02:21,025 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:02:27,151 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:29,208 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:31,254 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:33,397 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:36,212 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:02:36,213 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:02:39,448 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:41,494 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:43,622 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:45,667 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:46,662 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:02:47,677 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:49,694 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:51,488 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:02:51,488 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:02:52,728 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:54,732 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:56,744 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:02:59,758 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:01,760 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:03,763 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:04,466 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:03:04,468 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:03:04,469 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:03:04,470 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:03:04,766 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:03:05,769 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:06,575 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:03:06,578 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:03:07,776 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:11,781 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:13,792 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:15,792 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:17,796 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:18,793 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:03:19,831 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:21,660 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:03:21,661 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:03:21,838 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:23,856 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:27,869 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:29,873 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:31,880 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:33,886 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:35,894 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:36,812 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:03:36,813 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:03:39,903 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:41,907 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:43,911 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:45,914 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:47,917 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:49,921 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:50,723 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:03:51,898 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:03:51,899 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:03:51,925 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:55,932 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:57,935 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:03:59,938 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:01,941 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:03,944 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:05,766 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:04:05,767 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:04:05,768 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:04:05,769 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:04:05,948 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:05,949 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:04:06,945 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:04:06,946 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:04:07,952 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:09,955 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:11,959 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:13,962 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:15,965 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:19,971 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:21,974 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:21,994 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:04:21,994 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:04:22,670 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:04:25,986 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:28,350 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:32,522 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:34,533 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:36,568 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:37,046 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:04:37,047 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:04:38,811 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:39,802 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:45,853 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:47,857 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:51,869 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:52,169 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:04:52,169 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:04:53,872 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:56,523 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:04:57,986 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:04:59,992 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:01,996 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:04,001 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:07,314 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:05:07,326 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:05:08,211 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:16,390 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:18,438 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:20,523 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:21,723 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:05:21,724 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:05:21,725 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:05:21,730 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:05:22,417 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:05:22,418 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:05:22,542 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:22,547 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:05:24,690 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:26,695 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:28,849 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:29,832 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:05:34,961 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:37,063 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:37,539 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:05:37,540 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:05:39,070 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:41,093 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:43,098 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:45,238 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:51,704 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:52,934 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:05:52,935 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:05:53,813 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:05:56,288 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:04,450 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:06:08,052 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:06:08,055 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:06:10,834 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:19,365 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:23,380 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:23,507 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:06:23,511 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:06:25,484 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:27,533 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:29,524 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:31,694 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:32,694 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:34,711 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:37,806 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:38,613 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:06:38,614 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:06:39,487 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:06:43,044 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:45,091 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:47,267 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:48,027 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:06:48,030 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:06:48,033 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:06:48,033 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:06:48,042 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:06:48,042 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:06:48,043 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:06:48,043 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:06:48,044 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:06:48,045 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:06:48,046 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:06:48,046 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:06:48,046 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:06:48,047 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:06:48,210 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:06:50,216 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:52,225 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:54,046 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:06:54,047 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:06:55,276 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:57,326 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:06:59,380 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:01,391 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:03,552 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:05,575 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:07,641 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:09,277 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:07:09,281 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:07:09,658 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:13,183 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:07:16,020 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:22,386 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:24,383 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:07:24,384 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:07:24,393 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:26,420 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:28,453 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:30,626 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:32,666 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:34,739 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:39,483 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:07:39,488 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:07:43,222 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:45,229 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:47,394 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:07:49,289 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:51,435 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:07:54,680 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:07:54,682 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:07:57,713 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:00,825 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:02,885 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:04,886 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:09,907 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:08:09,910 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:08:11,175 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:15,242 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:17,247 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:19,274 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:20,920 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:08:20,922 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:08:20,923 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:08:20,927 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:08:21,448 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:21,448 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:08:21,882 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:08:23,493 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:24,999 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:08:25,003 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:08:25,543 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:27,612 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:29,616 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:31,657 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:33,676 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:37,754 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:39,899 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:40,403 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:08:40,404 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:08:41,903 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:43,985 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:46,019 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:48,306 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:52,579 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:55,807 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:08:55,810 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:08:55,828 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:08:56,391 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:08:59,977 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:02,015 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:04,085 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:06,092 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:08,098 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:10,163 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:11,109 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:09:11,109 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:09:12,283 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:16,435 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:24,854 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:26,256 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:09:26,258 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:09:28,882 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:30,984 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:31,097 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:09:33,000 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:35,077 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:37,182 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:37,420 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:09:37,421 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:09:37,422 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:09:37,423 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:09:37,425 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:09:37,425 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:09:37,426 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:09:37,426 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:09:37,427 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:09:37,428 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:09:37,428 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:09:37,429 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:09:37,429 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:09:37,430 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:09:38,183 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:09:39,270 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:41,333 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:41,464 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:09:41,465 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:09:45,432 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:49,506 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:51,511 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:53,569 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:55,574 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:56,613 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:09:56,614 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:09:57,640 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:09:59,642 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:01,648 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:03,658 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:05,168 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:10:05,665 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:07,671 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:09,821 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:11,772 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:10:11,774 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:10:11,829 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:13,918 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:15,922 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:17,928 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:19,934 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:22,128 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:23,134 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:25,170 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:26,883 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:10:26,886 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:10:27,175 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:29,287 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:33,318 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:35,584 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:37,700 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:38,684 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:10:39,727 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:41,877 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:42,019 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:10:42,019 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:10:43,625 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:10:43,626 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:10:43,627 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:10:43,628 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:10:43,883 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:43,883 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:10:45,888 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:47,894 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:49,903 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:51,908 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:53,919 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:55,953 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:10:57,145 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:10:57,145 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:10:59,940 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:01,943 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:03,946 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:06,022 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:08,024 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:10,027 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:11,367 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:11:12,048 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:12,222 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:11:12,222 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:11:16,055 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:18,059 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:20,075 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:22,078 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:24,081 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:26,087 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:27,301 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:11:27,302 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:11:28,093 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:32,099 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:34,102 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:36,134 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:38,138 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:40,141 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:41,744 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:11:41,745 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:11:41,747 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:11:41,747 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:11:41,748 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:11:41,748 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:11:41,749 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:11:41,749 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:11:41,750 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:11:41,750 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:11:41,751 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:11:41,752 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:11:41,752 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:11:41,753 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:11:42,145 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:42,146 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:11:42,370 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:11:42,371 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:11:43,672 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:11:44,148 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:46,152 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:48,155 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:50,159 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:52,162 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:54,166 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:56,169 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:11:57,444 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:11:57,445 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:11:58,172 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:02,181 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:04,184 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:06,187 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:08,190 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:10,196 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:12,199 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:12,491 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:12:12,491 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:12:14,202 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:15,607 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:12:18,208 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:20,212 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:22,215 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:24,218 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:26,222 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:27,547 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:12:27,548 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:12:28,225 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:32,231 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:34,235 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:38,245 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:40,248 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:42,036 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:12:42,038 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:12:42,038 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:12:42,040 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:12:42,253 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:42,253 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:12:42,603 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:12:42,603 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:12:44,256 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:47,549 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:12:48,264 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:52,283 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:54,290 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:12:57,650 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:12:57,652 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:12:58,313 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:00,328 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:06,415 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:08,422 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:10,427 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:12,481 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:12,751 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:13:12,751 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:13:14,495 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:16,499 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:18,627 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:21,689 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:13:28,167 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:13:28,168 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:13:31,475 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:44,048 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:13:44,051 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:13:44,356 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:50,523 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:58,688 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:13:59,275 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:13:59,284 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:14:01,283 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:14:03,068 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:14:05,073 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:14:07,238 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:14:09,477 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:14:15,173 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:14:15,267 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:14:17,835 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:14:19,935 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:14:24,437 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:14:30,675 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:14:30,677 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:14:33,176 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:14:41,381 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:14:42,415 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:14:43,580 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:14:46,125 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:14:46,128 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:14:46,811 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:00,045 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:01,613 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:15:01,614 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:15:04,342 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:05,481 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:08,730 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:16,968 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:15:17,128 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:15:18,260 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:20,320 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:22,386 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:23,179 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:15:24,053 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:15:24,054 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:15:24,055 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:15:24,056 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:15:24,057 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:15:24,057 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:15:24,058 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:15:24,058 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:15:24,059 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:15:24,059 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:15:24,060 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:15:24,060 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:15:24,060 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:15:24,062 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:15:24,467 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:24,467 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:15:26,505 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:32,295 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:15:32,297 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:15:32,742 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:35,063 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:39,111 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:41,134 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:43,175 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:45,273 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:47,213 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:47,563 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:15:47,564 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:15:49,277 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:51,410 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:53,417 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:55,479 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:57,900 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:15:58,222 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:15:59,958 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:02,749 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:16:02,750 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:16:04,017 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:06,021 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:08,115 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:10,212 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:12,216 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:14,291 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:16,292 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:17,835 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:16:17,836 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:16:18,297 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:20,333 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:22,334 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:24,352 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:26,361 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:28,404 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:30,467 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:31,859 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:16:32,471 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:32,923 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:16:32,924 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:16:34,047 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:16:34,048 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:16:34,049 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:16:34,053 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:16:34,499 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:34,499 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:16:36,600 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:38,601 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:40,627 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:42,728 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:46,871 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:48,003 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:16:48,003 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:16:48,905 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:50,911 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:52,997 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:55,037 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:16:59,240 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:01,244 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:03,250 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:03,262 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:17:03,263 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:17:05,278 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:05,923 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:17:07,347 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:09,400 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:11,482 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:13,501 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:17,520 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:18,505 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:17:18,507 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:17:19,590 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:21,601 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:29,818 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:31,826 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:33,672 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:17:33,675 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:17:38,005 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:39,487 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:17:40,059 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:44,150 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:46,179 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:47,457 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:17:47,460 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:17:47,460 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:17:47,462 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:17:48,245 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:48,250 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:17:48,876 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:17:48,876 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:17:50,272 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:54,308 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:56,318 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:17:58,608 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:00,631 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:02,636 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:04,108 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:18:04,109 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:18:04,720 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:06,727 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:08,735 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:13,522 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:18:14,845 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:16,857 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:18,862 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:19,372 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:18:19,372 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:18:20,867 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:22,873 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:25,021 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:27,024 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:31,053 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:33,057 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:34,449 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:18:34,451 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:18:35,079 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:39,086 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:41,090 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:43,096 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:46,286 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:18:47,110 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:48,981 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:18:48,983 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:18:48,984 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:18:48,985 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:18:49,114 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:49,114 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:18:49,541 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: stop_status +2023-02-26 21:18:49,541 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: stop_status +2023-02-26 21:18:51,119 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:53,123 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:55,130 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:57,134 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:59,141 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:18:59,967 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: log_artifact +2023-02-26 21:18:59,968 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: log_artifact +2023-02-26 21:19:00,143 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_3abf58769b68af900cbd.jpg +2023-02-26 21:19:00,143 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_73879ae5c6da6dbad3d9.jpg +2023-02-26 21:19:00,144 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_11f0e2769a75856f91d5.jpg +2023-02-26 21:19:00,144 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_286915e7e410f545982e.jpg +2023-02-26 21:19:00,144 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_9cb35babf5c1234eead3.jpg +2023-02-26 21:19:00,145 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_e404c2d565b3a61e5a5b.jpg +2023-02-26 21:19:00,145 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images +2023-02-26 21:19:00,441 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: partial_history +2023-02-26 21:19:01,149 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_be732c353d7cd53b6a1d.png +2023-02-26 21:19:01,152 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_2bc6164eef6abeb3a1be.png +2023-02-26 21:19:01,152 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png +2023-02-26 21:19:01,153 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_96ae821d3fc27a86333d.png +2023-02-26 21:19:01,153 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_936ab299b1fb8ad7120e.png +2023-02-26 21:19:01,153 INFO Thread-7 :55420 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_e1ef65811b62c5624f05.png +2023-02-26 21:19:01,757 INFO Thread-18 :55420 [upload_job.py:push():95] Uploaded file /home/akhot2/.cache/wandb/artifacts/obj/md5/dd/edfcb317085a5ba61aa39b0d1b717e +2023-02-26 21:19:02,229 INFO SenderThread:55420 [sender.py:send_request_log_artifact():1001] logged artifact run_i0ykd1a6_model - {'id': 'QXJ0aWZhY3Q6MzgyMzkzNTMw', 'digest': '89ce9688b35ed3a0f82dc20698c573b0', 'state': 'PENDING', 'aliases': [], 'artifactSequence': {'id': 'QXJ0aWZhY3RDb2xsZWN0aW9uOjU0OTQ5NjAx', 'latestArtifact': None}, 'version': 'latest'} +2023-02-26 21:19:02,229 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,229 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Validation_50_e404c2d565b3a61e5a5b.jpg with policy now +2023-02-26 21:19:02,230 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,230 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Validation_50_286915e7e410f545982e.jpg with policy now +2023-02-26 21:19:02,230 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,231 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Validation_50_73879ae5c6da6dbad3d9.jpg with policy now +2023-02-26 21:19:02,231 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,231 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Validation_50_9cb35babf5c1234eead3.jpg with policy now +2023-02-26 21:19:02,231 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,231 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Validation_50_11f0e2769a75856f91d5.jpg with policy now +2023-02-26 21:19:02,236 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,236 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Validation_50_3abf58769b68af900cbd.jpg with policy now +2023-02-26 21:19:02,236 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,237 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Results_50_e1ef65811b62c5624f05.png with policy now +2023-02-26 21:19:02,240 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,240 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Results_50_1919cd7ca3699dbfdb9c.png with policy now +2023-02-26 21:19:02,241 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,241 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Results_50_2bc6164eef6abeb3a1be.png with policy now +2023-02-26 21:19:02,246 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,246 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Results_50_936ab299b1fb8ad7120e.png with policy now +2023-02-26 21:19:02,247 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,247 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Results_50_96ae821d3fc27a86333d.png with policy now +2023-02-26 21:19:02,247 DEBUG SenderThread:55420 [sender.py:send():232] send: files +2023-02-26 21:19:02,247 INFO SenderThread:55420 [sender.py:_save_file():946] saving file media/images/Results_50_be732c353d7cd53b6a1d.png with policy now +2023-02-26 21:19:02,252 DEBUG SenderThread:55420 [sender.py:send():232] send: history +2023-02-26 21:19:02,252 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:19:02,257 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:19:02,257 DEBUG SenderThread:55420 [sender.py:send():232] send: telemetry +2023-02-26 21:19:02,257 DEBUG SenderThread:55420 [sender.py:send():232] send: telemetry +2023-02-26 21:19:02,607 INFO Thread-25 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/34v1md8f-media/images/Results_50_e1ef65811b62c5624f05.png +2023-02-26 21:19:02,619 INFO Thread-24 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/zg3t2g5b-media/images/Validation_50_3abf58769b68af900cbd.jpg +2023-02-26 21:19:02,626 INFO Thread-28 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/w77vb9j5-media/images/Results_50_936ab299b1fb8ad7120e.png +2023-02-26 21:19:02,630 INFO Thread-30 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/2ds20t3e-media/images/Results_50_be732c353d7cd53b6a1d.png +2023-02-26 21:19:02,634 INFO Thread-29 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/ugyuylc8-media/images/Results_50_96ae821d3fc27a86333d.png +2023-02-26 21:19:02,637 INFO Thread-19 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/1milzpcv-media/images/Validation_50_e404c2d565b3a61e5a5b.jpg +2023-02-26 21:19:02,637 INFO Thread-23 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/59a3i4xs-media/images/Validation_50_11f0e2769a75856f91d5.jpg +2023-02-26 21:19:02,644 INFO Thread-26 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/1ibugays-media/images/Results_50_1919cd7ca3699dbfdb9c.png +2023-02-26 21:19:02,666 INFO Thread-27 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/2k0ocwhm-media/images/Results_50_2bc6164eef6abeb3a1be.png +2023-02-26 21:19:02,689 DEBUG SenderThread:55420 [sender.py:send():232] send: exit +2023-02-26 21:19:02,689 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 21:19:02,689 INFO SenderThread:55420 [sender.py:send_exit():368] handling exit code: 0 +2023-02-26 21:19:02,690 INFO SenderThread:55420 [sender.py:send_exit():370] handling runtime: 3973 +2023-02-26 21:19:02,692 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:19:02,692 INFO SenderThread:55420 [sender.py:send_exit():376] send defer +2023-02-26 21:19:02,692 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 21:19:02,693 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: defer +2023-02-26 21:19:02,693 INFO HandlerThread:55420 [handler.py:handle_request_defer():164] handle defer: 0 +2023-02-26 21:19:02,693 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: defer +2023-02-26 21:19:02,693 INFO SenderThread:55420 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-02-26 21:19:02,693 INFO SenderThread:55420 [sender.py:transition_state():389] send defer: 1 +2023-02-26 21:19:02,694 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: defer +2023-02-26 21:19:02,694 INFO HandlerThread:55420 [handler.py:handle_request_defer():164] handle defer: 1 +2023-02-26 21:19:02,699 INFO Thread-21 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/15opqqyw-media/images/Validation_50_73879ae5c6da6dbad3d9.jpg +2023-02-26 21:19:02,715 INFO Thread-22 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/2nghnlgz-media/images/Validation_50_9cb35babf5c1234eead3.jpg +2023-02-26 21:19:02,717 INFO Thread-20 :55420 [upload_job.py:push():137] Uploaded file /tmp/tmprq0wh_xnwandb/n0r3l557-media/images/Validation_50_286915e7e410f545982e.jpg +2023-02-26 21:19:02,833 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: defer +2023-02-26 21:19:02,834 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 21:19:02,834 INFO SenderThread:55420 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-02-26 21:19:02,835 INFO SenderThread:55420 [sender.py:transition_state():389] send defer: 2 +2023-02-26 21:19:02,835 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 21:19:02,835 DEBUG SenderThread:55420 [sender.py:send():232] send: stats +2023-02-26 21:19:02,836 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: defer +2023-02-26 21:19:02,836 INFO HandlerThread:55420 [handler.py:handle_request_defer():164] handle defer: 2 +2023-02-26 21:19:02,836 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: defer +2023-02-26 21:19:02,836 INFO SenderThread:55420 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-02-26 21:19:02,837 INFO SenderThread:55420 [sender.py:transition_state():389] send defer: 3 +2023-02-26 21:19:02,837 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: defer +2023-02-26 21:19:02,837 INFO HandlerThread:55420 [handler.py:handle_request_defer():164] handle defer: 3 +2023-02-26 21:19:02,837 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: defer +2023-02-26 21:19:02,837 INFO SenderThread:55420 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-02-26 21:19:02,837 INFO SenderThread:55420 [sender.py:transition_state():389] send defer: 4 +2023-02-26 21:19:02,837 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: defer +2023-02-26 21:19:02,837 INFO HandlerThread:55420 [handler.py:handle_request_defer():164] handle defer: 4 +2023-02-26 21:19:02,838 DEBUG SenderThread:55420 [sender.py:send():232] send: summary +2023-02-26 21:19:02,839 INFO SenderThread:55420 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-02-26 21:19:02,839 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: defer +2023-02-26 21:19:02,839 INFO SenderThread:55420 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-02-26 21:19:02,839 INFO SenderThread:55420 [sender.py:transition_state():389] send defer: 5 +2023-02-26 21:19:02,839 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: defer +2023-02-26 21:19:02,839 INFO HandlerThread:55420 [handler.py:handle_request_defer():164] handle defer: 5 +2023-02-26 21:19:02,840 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: defer +2023-02-26 21:19:02,840 INFO SenderThread:55420 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-02-26 21:19:02,934 INFO SenderThread:55420 [sender.py:transition_state():389] send defer: 6 +2023-02-26 21:19:02,934 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: defer +2023-02-26 21:19:02,934 INFO HandlerThread:55420 [handler.py:handle_request_defer():164] handle defer: 6 +2023-02-26 21:19:02,935 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: defer +2023-02-26 21:19:02,935 INFO SenderThread:55420 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-02-26 21:19:02,935 INFO SenderThread:55420 [dir_watcher.py:finish():279] shutting down directory watcher +2023-02-26 21:19:02,937 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 21:19:03,152 INFO Thread-7 :55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/config.yaml +2023-02-26 21:19:03,154 INFO SenderThread:55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:19:03,154 INFO SenderThread:55420 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:19:03,155 INFO SenderThread:55420 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files +2023-02-26 21:19:03,156 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/conda-environment.yaml conda-environment.yaml +2023-02-26 21:19:03,156 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-metadata.json wandb-metadata.json +2023-02-26 21:19:03,156 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/requirements.txt requirements.txt +2023-02-26 21:19:03,159 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json wandb-summary.json +2023-02-26 21:19:03,162 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log output.log +2023-02-26 21:19:03,164 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/config.yaml config.yaml +2023-02-26 21:19:03,171 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Labels_0_86483f0d36733e5da8e0.jpg media/images/Labels_0_86483f0d36733e5da8e0.jpg +2023-02-26 21:19:03,171 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_286915e7e410f545982e.jpg media/images/Validation_50_286915e7e410f545982e.jpg +2023-02-26 21:19:03,171 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg media/images/Mosaics_0_5c9038da03e849a7b2c1.jpg +2023-02-26 21:19:03,171 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_be732c353d7cd53b6a1d.png media/images/Results_50_be732c353d7cd53b6a1d.png +2023-02-26 21:19:03,171 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_73879ae5c6da6dbad3d9.jpg media/images/Validation_50_73879ae5c6da6dbad3d9.jpg +2023-02-26 21:19:03,171 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg media/images/Labels_0_5f5b02b1f0140c1ffffe.jpg +2023-02-26 21:19:03,171 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_424a5cb76a2816c2809d.jpg media/images/Mosaics_0_424a5cb76a2816c2809d.jpg +2023-02-26 21:19:03,171 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_9cb35babf5c1234eead3.jpg media/images/Validation_50_9cb35babf5c1234eead3.jpg +2023-02-26 21:19:03,171 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_e1ef65811b62c5624f05.png media/images/Results_50_e1ef65811b62c5624f05.png +2023-02-26 21:19:03,172 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_2bc6164eef6abeb3a1be.png media/images/Results_50_2bc6164eef6abeb3a1be.png +2023-02-26 21:19:03,172 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_e404c2d565b3a61e5a5b.jpg media/images/Validation_50_e404c2d565b3a61e5a5b.jpg +2023-02-26 21:19:03,172 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_11f0e2769a75856f91d5.jpg media/images/Validation_50_11f0e2769a75856f91d5.jpg +2023-02-26 21:19:03,172 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png media/images/Results_50_1919cd7ca3699dbfdb9c.png +2023-02-26 21:19:03,172 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg media/images/Mosaics_0_3b907e06dfdf371ee71e.jpg +2023-02-26 21:19:03,172 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_96ae821d3fc27a86333d.png media/images/Results_50_96ae821d3fc27a86333d.png +2023-02-26 21:19:03,172 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Results_50_936ab299b1fb8ad7120e.png media/images/Results_50_936ab299b1fb8ad7120e.png +2023-02-26 21:19:03,172 INFO SenderThread:55420 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/media/images/Validation_50_3abf58769b68af900cbd.jpg media/images/Validation_50_3abf58769b68af900cbd.jpg +2023-02-26 21:19:03,172 INFO SenderThread:55420 [sender.py:transition_state():389] send defer: 7 +2023-02-26 21:19:03,172 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 21:19:03,173 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: defer +2023-02-26 21:19:03,173 INFO HandlerThread:55420 [handler.py:handle_request_defer():164] handle defer: 7 +2023-02-26 21:19:03,173 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: defer +2023-02-26 21:19:03,173 INFO SenderThread:55420 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-02-26 21:19:03,173 INFO SenderThread:55420 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 21:19:03,274 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 21:19:03,275 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 21:19:03,377 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 21:19:03,377 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 21:19:03,444 INFO Thread-33 :55420 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/wandb-summary.json +2023-02-26 21:19:03,479 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 21:19:03,479 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 21:19:03,498 INFO Thread-35 :55420 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/config.yaml +2023-02-26 21:19:03,500 INFO Thread-31 :55420 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/conda-environment.yaml +2023-02-26 21:19:03,502 INFO Thread-32 :55420 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/requirements.txt +2023-02-26 21:19:03,581 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 21:19:03,581 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 21:19:03,622 INFO Thread-34 :55420 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/files/output.log +2023-02-26 21:19:03,700 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 21:19:03,700 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 21:19:03,802 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 21:19:03,802 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 21:19:03,822 INFO Thread-6 :55420 [sender.py:transition_state():389] send defer: 8 +2023-02-26 21:19:03,823 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: defer +2023-02-26 21:19:03,823 INFO HandlerThread:55420 [handler.py:handle_request_defer():164] handle defer: 8 +2023-02-26 21:19:03,823 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: defer +2023-02-26 21:19:03,823 INFO SenderThread:55420 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-02-26 21:19:03,904 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 21:19:04,162 INFO SenderThread:55420 [sender.py:transition_state():389] send defer: 9 +2023-02-26 21:19:04,162 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 21:19:04,163 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: defer +2023-02-26 21:19:04,163 INFO HandlerThread:55420 [handler.py:handle_request_defer():164] handle defer: 9 +2023-02-26 21:19:04,163 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: defer +2023-02-26 21:19:04,163 INFO SenderThread:55420 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-02-26 21:19:04,163 INFO SenderThread:55420 [sender.py:transition_state():389] send defer: 10 +2023-02-26 21:19:04,164 DEBUG SenderThread:55420 [sender.py:send():232] send: final +2023-02-26 21:19:04,164 DEBUG SenderThread:55420 [sender.py:send():232] send: footer +2023-02-26 21:19:04,164 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: defer +2023-02-26 21:19:04,165 INFO HandlerThread:55420 [handler.py:handle_request_defer():164] handle defer: 10 +2023-02-26 21:19:04,165 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: defer +2023-02-26 21:19:04,165 INFO SenderThread:55420 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-02-26 21:19:04,264 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: poll_exit +2023-02-26 21:19:04,264 DEBUG SenderThread:55420 [sender.py:send_request():246] send_request: poll_exit +2023-02-26 21:19:04,264 INFO SenderThread:55420 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 21:19:04,637 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: sampled_history +2023-02-26 21:19:04,640 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: get_summary +2023-02-26 21:19:04,640 DEBUG HandlerThread:55420 [handler.py:handle_request():141] handle_request: shutdown +2023-02-26 21:19:04,640 INFO HandlerThread:55420 [handler.py:finish():806] shutting down handler +2023-02-26 21:19:05,164 INFO WriterThread:55420 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/run-i0ykd1a6.wandb +2023-02-26 21:19:05,536 INFO SenderThread:55420 [sender.py:finish():1106] shutting down sender +2023-02-26 21:19:05,536 INFO SenderThread:55420 [file_pusher.py:finish():145] shutting down file pusher +2023-02-26 21:19:05,536 INFO SenderThread:55420 [file_pusher.py:join():150] waiting for file pusher +2023-02-26 21:19:05,622 INFO MainThread:55420 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/logs/debug.log b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..774247ec610852eaadcedb0666d25ce490e5b0f1 --- /dev/null +++ b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/logs/debug.log @@ -0,0 +1,147 @@ +2023-02-26 20:12:41,255 INFO MainThread:41778 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-02-26 20:12:41,257 INFO MainThread:41778 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-02-26 20:12:41,257 INFO MainThread:41778 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-02-26 20:12:41,257 INFO MainThread:41778 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-02-26 20:12:41,257 INFO MainThread:41778 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-02-26 20:12:41,257 INFO MainThread:41778 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/logs/debug.log +2023-02-26 20:12:41,257 INFO MainThread:41778 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/logs/debug-internal.log +2023-02-26 20:12:41,257 INFO MainThread:41778 [wandb_init.py:init():471] calling init triggers +2023-02-26 20:12:41,257 INFO MainThread:41778 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 50, 'batch_size': 16, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 40, 'project': 'runs/train', 'name': 'exp', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/exp15'} +2023-02-26 20:12:41,257 INFO MainThread:41778 [wandb_init.py:init():524] starting backend +2023-02-26 20:12:41,258 INFO MainThread:41778 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-02-26 20:12:41,298 INFO MainThread:41778 [backend.py:ensure_launched():217] starting backend process... +2023-02-26 20:12:41,312 INFO MainThread:41778 [backend.py:ensure_launched():222] started backend process with pid: 55420 +2023-02-26 20:12:41,315 INFO MainThread:41778 [wandb_init.py:init():533] backend started and connected +2023-02-26 20:12:41,321 INFO MainThread:41778 [wandb_init.py:init():597] updated telemetry +2023-02-26 20:12:41,480 INFO MainThread:41778 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-02-26 20:12:48,804 INFO MainThread:41778 [wandb_run.py:_on_init():1923] communicating current version +2023-02-26 20:12:48,861 INFO MainThread:41778 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-02-26 20:12:48,861 INFO MainThread:41778 [wandb_init.py:init():659] starting run threads in backend +2023-02-26 20:12:54,101 INFO MainThread:41778 [wandb_run.py:_console_start():1897] atexit reg +2023-02-26 20:12:54,144 INFO MainThread:41778 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-02-26 20:12:54,146 INFO MainThread:41778 [wandb_run.py:_redirect():1775] Redirecting console. +2023-02-26 20:12:54,152 INFO MainThread:41778 [wandb_run.py:_redirect():1831] Redirects installed. +2023-02-26 20:12:54,152 INFO MainThread:41778 [wandb_init.py:init():684] run started, returning control to user process +2023-02-26 21:19:00,440 INFO MainThread:41778 [wandb_run.py:_finish():1685] finishing run akhot2/YOLOv5/i0ykd1a6 +2023-02-26 21:19:00,441 INFO MainThread:41778 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 0 +2023-02-26 21:19:00,446 INFO MainThread:41778 [wandb_run.py:_restore():1838] restore +2023-02-26 21:19:02,693 INFO MainThread:41778 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47003992 + total_bytes: 47003992 +} + +2023-02-26 21:19:02,836 INFO MainThread:41778 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47003992 + total_bytes: 47003992 +} + +2023-02-26 21:19:03,173 INFO MainThread:41778 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47003992 + total_bytes: 47181450 +} + +2023-02-26 21:19:03,276 INFO MainThread:41778 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47022932 + total_bytes: 47181450 +} + +2023-02-26 21:19:03,378 INFO MainThread:41778 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47181450 + total_bytes: 47181450 +} + +2023-02-26 21:19:03,480 INFO MainThread:41778 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47181450 + total_bytes: 47181450 +} + +2023-02-26 21:19:03,582 INFO MainThread:41778 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47181450 + total_bytes: 47181450 +} + +2023-02-26 21:19:03,701 INFO MainThread:41778 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47181450 + total_bytes: 47181450 +} + +2023-02-26 21:19:03,803 INFO MainThread:41778 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47181450 + total_bytes: 47181450 +} + +2023-02-26 21:19:04,163 INFO MainThread:41778 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47181450 + total_bytes: 47181450 +} + +2023-02-26 21:19:04,536 INFO MainThread:41778 [wandb_run.py:_on_finish():1995] got exit ret: done: true +exit_result { +} +file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47181450 + total_bytes: 47181450 +} +local_info { +} + +2023-02-26 21:19:06,969 INFO MainThread:41778 [wandb_run.py:_footer_history_summary_info():3102] rendering history +2023-02-26 21:19:06,975 INFO MainThread:41778 [wandb_run.py:_footer_history_summary_info():3134] rendering summary +2023-02-26 21:19:06,983 INFO MainThread:41778 [wandb_run.py:_footer_sync_info():3057] logging synced files diff --git a/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/run-i0ykd1a6.wandb b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/run-i0ykd1a6.wandb new file mode 100644 index 0000000000000000000000000000000000000000..ad0f4cfafaec5431bea2bde0f39db398aa7d2b8a Binary files /dev/null and b/yolov5_model/wandb/run-20230226_201241-i0ykd1a6/run-i0ykd1a6.wandb differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/conda-environment.yaml b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/config.yaml b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9e2040e3b6ee997aa3d30687757179ee51d6fcdc --- /dev/null +++ b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/config.yaml @@ -0,0 +1,178 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1678062265 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 2 + - 13 + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 16 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 50 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: 6beetle_7-non_clean_bkg_overlap +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/6beetle_7-non_clean_bkg_overlap +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 8 diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Labels_0_688adbaf4bfe9105092c.jpg b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Labels_0_688adbaf4bfe9105092c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9b36771eb2d4342bba4cf4e544f80045fc46f85f Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Labels_0_688adbaf4bfe9105092c.jpg differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Labels_0_951374f4059853176577.jpg b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Labels_0_951374f4059853176577.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7d37a57cac02ab3b30acf4535b748f005acef11c Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Labels_0_951374f4059853176577.jpg differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_17c2e2fc63e75c51efd3.jpg b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_17c2e2fc63e75c51efd3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a60f8afc611f763384679c6d648afc24ddb82295 Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_17c2e2fc63e75c51efd3.jpg differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_31ae070518e136612999.jpg b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_31ae070518e136612999.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f49c717fea624da17e028bbe3e0bcaa29735de77 Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_31ae070518e136612999.jpg differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_bc6ca511d46aa2a2bac8.jpg b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_bc6ca511d46aa2a2bac8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1284c2b0f8b39bed51d9238959c68b4d8bab1a6d Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_bc6ca511d46aa2a2bac8.jpg differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png new file mode 100644 index 0000000000000000000000000000000000000000..850b5a86a6d7f348a122e435f25f07c8922076b2 Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_37c6b51fadf8dcd14bcd.png b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_37c6b51fadf8dcd14bcd.png new file mode 100644 index 0000000000000000000000000000000000000000..aff2ce88fb40a04f6c80b92cd0f9b7e4f0e7032e Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_37c6b51fadf8dcd14bcd.png differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_534ee3042242cf12269c.png b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_534ee3042242cf12269c.png new file mode 100644 index 0000000000000000000000000000000000000000..d3125f2b41dabd853d0e6588c0533f08cc3ae4af Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_534ee3042242cf12269c.png differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_6e9f0ed7a2a378a3f5e5.png b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_6e9f0ed7a2a378a3f5e5.png new file mode 100644 index 0000000000000000000000000000000000000000..bbad750fe4947d022b2f4fbe4f72e982f868a545 Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_6e9f0ed7a2a378a3f5e5.png differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_b3a66dfbca9e9dc2c9c6.png b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_b3a66dfbca9e9dc2c9c6.png new file mode 100644 index 0000000000000000000000000000000000000000..21cfce4212d966eaa35de136191e361af1d0654b Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_b3a66dfbca9e9dc2c9c6.png differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_cb97df7cc81b8e8b7a59.png b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_cb97df7cc81b8e8b7a59.png new file mode 100644 index 0000000000000000000000000000000000000000..54d4028f6ceeae2d1beb76b22897cb9ed09b7a8d Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_cb97df7cc81b8e8b7a59.png differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_0d8debff4c2235963100.jpg b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_0d8debff4c2235963100.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b75313215a47b256c92db63cf3a46ae0f45a413 Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_0d8debff4c2235963100.jpg differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_215461129a439e9d8941.jpg b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_215461129a439e9d8941.jpg new file mode 100644 index 0000000000000000000000000000000000000000..502a46dc33b0a0acfe262c2dba9528dc1943231e Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_215461129a439e9d8941.jpg differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_42834517d314a8166315.jpg b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_42834517d314a8166315.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2eba8f1b141a20c5657721110925a45e22e70030 Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_42834517d314a8166315.jpg differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_47e4b210723974a87405.jpg b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_47e4b210723974a87405.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fcbc39444c91cda09cbaaa825aa948aad325ec7d Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_47e4b210723974a87405.jpg differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_60fe9449acac950b7536.jpg b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_60fe9449acac950b7536.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a6eda18160f06d271d64bba408f75ab13a232dd3 Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_60fe9449acac950b7536.jpg differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_95b415bb373b1526ec7b.jpg b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_95b415bb373b1526ec7b.jpg new file mode 100644 index 0000000000000000000000000000000000000000..087ab987742f69bccfe42ea42d3260f8a8fbd383 Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_95b415bb373b1526ec7b.jpg differ diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..e03e466b9af0f544cc3720033635441d135dc982 --- /dev/null +++ b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log @@ -0,0 +1,1004 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Transferred 475/481 items from yolov5m.pt +[34m[1mAMP: [39m[22mchecks passed ✅ +[34m[1moptimizer:[39m[22m SGD(lr=0.01) with parameter groups 79 weight(decay=0.0), 82 weight(decay=0.0005), 82 bias +WARNING âš ï¸ DP not recommended, use torch.distributed.run for best DDP Multi-GPU results. +See Multi-GPU Tutorial at https://github.com/ultralytics/yolov5/issues/475 to get started. +[34m[1mtrain: [39m[22mScanning /projects/akhot2/group-01-phys371-sp2023/crop/data/train/labels... 1001 images, 145 backgrounds, 0 corrupt: 100%|████ +[34m[1mtrain: [39m[22mNew cache created: /projects/akhot2/group-01-phys371-sp2023/crop/data/train/labels.cache +[34m[1mval: [39m[22mScanning /projects/akhot2/group-01-phys371-sp2023/crop/data/test/labels... 249 images, 37 backgrounds, 0 corrupt: 100%|█████████ +[34m[1mval: [39m[22mNew cache created: /projects/akhot2/group-01-phys371-sp2023/crop/data/test/labels.cache +[34m[1mAutoAnchor: [39m[22m6.41 anchors/target, 1.000 Best Possible Recall (BPR). Current anchors are a good fit to dataset ✅ +Plotting labels to runs/train/6beetle_7-non_clean_bkg_overlap/labels.jpg... +Image sizes 1280 train, 1280 val +Using 8 dataloader workers +Logging results to [1mruns/train/6beetle_7-non_clean_bkg_overlap +Starting training for 50 epochs... + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + 0/49 13G 0.08443 0.06648 0 57 1280: 100%|██████████| 63/63 [01:52<00:00, 1.78s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.47it/ + all 249 851 0.301 0.659 0.351 0.102 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + 1/49 16G 0.06893 0.03965 0 56 1280: 100%|██████████| 63/63 [01:49<00:00, 1.73s/it] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.11it/ + all 249 851 0.359 0.669 0.375 0.147 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + 2/49 16G 0.06453 0.03164 0 58 1280: 100%|██████████| 63/63 [01:50<00:00, 1.76s/it] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.11it/ + all 249 851 0.361 0.912 0.365 0.149 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + 3/49 16G 0.05789 0.02735 0 51 1280: 100%|██████████| 63/63 [01:49<00:00, 1.74s/it] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.16it/ + all 249 851 0.652 0.865 0.731 0.256 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + 4/49 16G 0.0494 0.02501 0 54 1280: 100%|██████████| 63/63 [01:49<00:00, 1.74s/it] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.13it/ + all 249 851 0.948 0.957 0.969 0.348 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + 5/49 16G 0.04413 0.02314 0 55 1280: 100%|██████████| 63/63 [01:49<00:00, 1.75s/it] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.17it/ + all 249 851 0.977 0.979 0.985 0.43 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + 6/49 16G 0.03937 0.02113 0 34 1280: 100%|██████████| 63/63 [01:42<00:00, 1.63s/it] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.17it/ + all 249 851 0.986 0.992 0.994 0.534 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + + + 7/49 16G 0.03697 0.02051 0 43 1280: 100%|██████████| 63/63 [01:39<00:00, 1.59s/it] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.33it/ + all 249 851 0.992 0.995 0.994 0.583 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + 8/49 16G 0.03462 0.02006 0 74 1280: 100%|██████████| 63/63 [01:47<00:00, 1.70s/it] + + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:06<00:00, 1.27it/ + all 249 851 0.993 0.989 0.995 0.59 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + 9/49 16G 0.03287 0.01891 0 56 1280: 100%|██████████| 63/63 [01:45<00:00, 1.67s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.66it/ + all 249 851 0.998 0.995 0.995 0.688 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + 10/49 16G 0.03094 0.0184 0 49 1280: 100%|██████████| 63/63 [01:50<00:00, 1.76s/it] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:05<00:00, 1.46it/ + all 249 851 0.996 0.994 0.995 0.663 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + 11/49 16G 0.02905 0.01622 0 65 1280: 6%|â–‹ | 4/63 [00:02<00:28, 2.09it/s] + 11/49 16G 0.03023 0.01764 0 106 1280: 17%|█▋ | 11/63 [00:05<00:16, 3.18it/s] + 11/49 16G 0.02994 0.01787 0 132 1280: 30%|███ | 19/63 [00:19<00:22, 1.99it/s] + 11/49 16G 0.0297 0.01765 0 85 1280: 37%|███▋ | 23/63 [00:31<00:58, 1.45s/it] + 11/49 16G 0.02969 0.01748 0 67 1280: 43%|████▎ | 27/63 [00:32<00:17, 2.05it/s] + 11/49 16G 0.02977 0.01753 0 96 1280: 56%|█████▌ | 35/63 [00:45<00:13, 2.02it/s] + 11/49 16G 0.02971 0.01754 0 84 1280: 59%|█████▊ | 37/63 [00:57<01:12, 2.80s/it] + 11/49 16G 0.02969 0.01744 0 62 1280: 68%|██████▊ | 43/63 [00:58<00:09, 2.00it/s] + 11/49 16G 0.02963 0.01736 0 91 1280: 75%|███████■| 47/63 [01:11<00:24, 1.51s/it] + 11/49 16G 0.02965 0.01722 0 73 1280: 81%|████████ | 51/63 [01:12<00:06, 1.97it/s] + 11/49 16G 0.0297 0.01728 0 78 1280: 84%|████████■| 53/63 [01:27<00:34, 3.47s/it] + 11/49 16G 0.02971 0.01734 0 113 1280: 94%|█████████▎| 59/63 [01:28<00:02, 1.74it/s] + 11/49 16G 0.02969 0.01728 0 73 1280: 95%|█████████▌| 60/63 [01:43<00:14, 4.89s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + 11/49 16G 0.02959 0.01732 0 42 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it] + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:01<00:00, 3.95it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.99it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.99it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.99it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.99it/ + 13/49 16G 0.02605 0.01722 0 102 1280: 21%|██ | 13/63 [00:26<00:46, 1.07it/s]3.99it/ + 13/49 16G 0.026 0.01797 0 134 1280: 33%|███▎ | 21/63 [00:35<00:18, 2.23it/s]3.99it/ + 13/49 16G 0.02608 0.01804 0 94 1280: 46%|████▌ | 29/63 [00:47<00:15, 2.18it/s]3.99it/ + 13/49 16G 0.02605 0.01788 0 95 1280: 49%|████▉ | 31/63 [00:59<01:29, 2.81s/it]3.99it/ + 13/49 16G 0.02654 0.01793 0 93 1280: 59%|█████▊ | 37/63 [01:00<00:12, 2.03it/s]3.99it/ + 13/49 16G 0.02682 0.01801 0 81 1280: 68%|██████▊ | 43/63 [01:13<00:16, 1.22it/s]3.99it/ + 13/49 16G 0.02677 0.01784 0 83 1280: 71%|███████■| 45/63 [01:13<00:08, 2.03it/s]3.99it/ + 13/49 16G 0.02687 0.01786 0 68 1280: 84%|████████■| 53/63 [01:27<00:04, 2.04it/s]3.99it/ + 13/49 16G 0.02701 0.01798 0 80 1280: 90%|█████████ | 57/63 [01:39<00:08, 1.49s/it]3.99it/ + 13/49 16G 0.02699 0.01796 0 119 1280: 97%|█████████▋| 61/63 [01:40<00:00, 2.01it/s]3.99it/ + 13/49 16G 0.02705 0.01791 0 43 1280: 100%|██████████| 63/63 [01:52<00:00, 1.78s/it]3.99it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.12it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.12it/ + 14/49 16G 0.02768 0.01721 0 98 1280: 14%|█■| 9/63 [00:17<02:24, 2.68s/it] 4.12it/ + 14/49 16G 0.0279 0.01699 0 75 1280: 16%|█▌ | 10/63 [00:20<02:21, 2.67s/it]4.12it/ + 14/49 16G 0.02763 0.01686 0 102 1280: 22%|██■| 14/63 [00:24<00:55, 1.14s/it]4.12it/ + 14/49 16G 0.02759 0.01653 0 62 1280: 30%|███ | 19/63 [00:33<00:40, 1.07it/s]4.12it/ + 14/49 16G 0.02708 0.01634 0 85 1280: 35%|███■| 22/63 [00:34<00:20, 2.00it/s]4.12it/ + 14/49 16G 0.02692 0.01656 0 105 1280: 38%|███▊ | 24/63 [00:45<01:43, 2.65s/it]4.12it/ + 14/49 16G 0.02703 0.01653 0 106 1280: 48%|████▊ | 30/63 [00:46<00:15, 2.11it/s]4.12it/ + 14/49 16G 0.02717 0.01677 0 72 1280: 60%|██████ | 38/63 [00:59<00:12, 2.08it/s]4.12it/ + 14/49 16G 0.02705 0.01687 0 84 1280: 73%|███████▎ | 46/63 [01:13<00:08, 1.97it/s]4.12it/ + 14/49 16G 0.02703 0.01692 0 104 1280: 78%|███████▊ | 49/63 [01:25<00:27, 2.00s/it]4.12it/ + 14/49 16G 0.027 0.01703 0 110 1280: 86%|████████▌ | 54/63 [01:26<00:04, 2.04it/s]4.12it/ + 14/49 16G 0.0269 0.01701 0 90 1280: 98%|█████████▊| 62/63 [01:39<00:00, 2.04it/s]4.12it/ + 14/49 16G 0.02686 0.01697 0 45 1280: 100%|██████████| 63/63 [01:45<00:00, 1.67s/it]4.12it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.05it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.05it/ + 15/49 16G 0.02555 0.01665 0 119 1280: 11%|â–ˆ | 7/63 [00:02<00:31, 1.76it/s] 4.05it/ + 15/49 16G 0.02559 0.01698 0 105 1280: 17%|█▋ | 11/63 [00:10<00:53, 1.04s/it]4.05it/ + 15/49 16G 0.02547 0.01684 0 84 1280: 19%|█▉ | 12/63 [00:11<00:51, 1.00s/it]4.05it/ + 15/49 16G 0.02528 0.01683 0 92 1280: 22%|██■| 14/63 [00:15<01:04, 1.32s/it]4.05it/ + 15/49 16G 0.02528 0.0172 0 133 1280: 24%|██■| 15/63 [00:23<02:33, 3.20s/it]4.05it/ + 15/49 16G 0.02531 0.0174 0 114 1280: 25%|██▌ | 16/63 [00:29<03:17, 4.19s/it]4.05it/ + 15/49 16G 0.02535 0.0173 0 122 1280: 32%|███■| 20/63 [00:31<00:57, 1.33s/it]4.05it/ + 15/49 16G 0.0254 0.01744 0 104 1280: 35%|███■| 22/63 [00:33<00:47, 1.15s/it]4.05it/ + 15/49 16G 0.02532 0.0174 0 91 1280: 37%|███▋ | 23/63 [00:35<01:02, 1.55s/it]4.05it/ + 15/49 16G 0.02557 0.01718 0 78 1280: 44%|████■| 28/63 [00:45<00:36, 1.03s/it]4.05it/ + 15/49 16G 0.02546 0.01714 0 90 1280: 48%|████▊ | 30/63 [00:48<00:42, 1.29s/it]4.05it/ + 15/49 16G 0.02543 0.01727 0 130 1280: 49%|████▉ | 31/63 [00:50<00:44, 1.40s/it]4.05it/ + 15/49 16G 0.02543 0.01718 0 97 1280: 54%|█████■| 34/63 [00:57<00:45, 1.58s/it]4.05it/ + 15/49 16G 0.02549 0.01727 0 96 1280: 57%|█████▋ | 36/63 [00:58<00:30, 1.12s/it]4.05it/ + 15/49 16G 0.02549 0.01713 0 67 1280: 59%|█████▊ | 37/63 [01:01<00:38, 1.50s/it]4.05it/ + 15/49 16G 0.02548 0.01703 0 78 1280: 60%|██████ | 38/63 [01:02<00:32, 1.31s/it]4.05it/ + 15/49 16G 0.02554 0.0171 0 105 1280: 62%|██████■| 39/63 [01:03<00:34, 1.42s/it]4.05it/ + 15/49 16G 0.02535 0.01679 0 80 1280: 68%|██████▊ | 43/63 [01:11<00:23, 1.17s/it]4.05it/ + 15/49 16G 0.02532 0.01675 0 78 1280: 70%|██████▉ | 44/63 [01:12<00:20, 1.09s/it]4.05it/ + 15/49 16G 0.02545 0.01677 0 107 1280: 73%|███████▎ | 46/63 [01:15<00:22, 1.29s/it]4.05it/ + 15/49 16G 0.02546 0.01681 0 106 1280: 75%|███████■| 47/63 [01:17<00:22, 1.42s/it]4.05it/ + 15/49 16G 0.02527 0.01657 0 96 1280: 83%|████████▎ | 52/63 [01:25<00:11, 1.06s/it]4.05it/ + 15/49 16G 0.02542 0.01666 0 89 1280: 86%|████████▌ | 54/63 [01:28<00:11, 1.27s/it]4.05it/ + 15/49 16G 0.02545 0.01661 0 75 1280: 87%|████████▋ | 55/63 [01:30<00:11, 1.40s/it]4.05it/ + 15/49 16G 0.0254 0.01656 0 80 1280: 94%|█████████▎| 59/63 [01:37<00:04, 1.16s/it]4.05it/ + 15/49 16G 0.02533 0.01656 0 96 1280: 95%|█████████▌| 60/63 [01:38<00:03, 1.06s/it]4.05it/ + 15/49 16G 0.02542 0.01657 0 90 1280: 98%|█████████▊| 62/63 [01:41<00:01, 1.26s/it]4.05it/ + 15/49 16G 0.0254 0.01648 0 33 1280: 100%|██████████| 63/63 [01:41<00:00, 1.62s/it]4.05it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.07it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.07it/ + 16/49 16G 0.0257 0.01585 0 90 1280: 13%|█▎ | 8/63 [00:10<00:47, 1.16it/s] 4.07it/ + 16/49 16G 0.02448 0.01514 0 53 1280: 19%|█▉ | 12/63 [00:19<01:00, 1.19s/it]4.07it/ + 16/49 16G 0.02427 0.01533 0 100 1280: 21%|██ | 13/63 [00:19<00:53, 1.07s/it]4.07it/ + 16/49 16G 0.02466 0.01505 0 88 1280: 24%|██■| 15/63 [00:23<01:00, 1.25s/it]4.07it/ + 16/49 16G 0.02489 0.01544 0 113 1280: 25%|██▌ | 16/63 [00:23<00:43, 1.08it/s]4.07it/ + 16/49 16G 0.02438 0.01625 0 96 1280: 33%|███▎ | 21/63 [00:41<01:05, 1.55s/it]4.07it/ + 16/49 16G 0.02455 0.01591 0 71 1280: 37%|███▋ | 23/63 [00:46<01:12, 1.82s/it]4.07it/ + 16/49 16G 0.02438 0.01594 0 93 1280: 38%|███▊ | 24/63 [00:46<00:51, 1.33s/it]4.07it/ + 16/49 16G 0.02448 0.0161 0 119 1280: 40%|███▉ | 25/63 [00:55<02:22, 3.75s/it]4.07it/ + 16/49 16G 0.02434 0.01601 0 99 1280: 46%|████▌ | 29/63 [00:56<00:35, 1.05s/it]4.07it/ + 16/49 16G 0.02429 0.01592 0 92 1280: 51%|█████ | 32/63 [00:59<00:26, 1.17it/s]4.07it/ + 16/49 16G 0.02429 0.01596 0 96 1280: 57%|█████▋ | 36/63 [01:09<00:33, 1.25s/it]4.07it/ + 16/49 16G 0.0243 0.01592 0 89 1280: 59%|█████▊ | 37/63 [01:09<00:29, 1.15s/it]4.07it/ + 16/49 16G 0.02423 0.01609 0 86 1280: 63%|██████▎ | 40/63 [01:12<00:19, 1.16it/s]4.07it/ + 16/49 16G 0.02419 0.01603 0 75 1280: 65%|██████▌ | 41/63 [01:21<01:13, 3.32s/it]4.07it/ + 16/49 16G 0.02419 0.01598 0 66 1280: 71%|███████■| 45/63 [01:23<00:20, 1.14s/it]4.07it/ + 16/49 16G 0.02413 0.01596 0 113 1280: 75%|███████■| 47/63 [01:25<00:18, 1.14s/it]4.07it/ + 16/49 16G 0.02412 0.0159 0 75 1280: 76%|███████▌ | 48/63 [01:26<00:12, 1.18it/s]4.07it/ + 16/49 16G 0.02404 0.01589 0 93 1280: 83%|████████▎ | 52/63 [01:35<00:13, 1.26s/it]4.07it/ + 16/49 16G 0.02406 0.01589 0 83 1280: 84%|████████■| 53/63 [01:36<00:10, 1.10s/it]4.07it/ + 16/49 16G 0.02405 0.01589 0 119 1280: 89%|████████▉ | 56/63 [01:39<00:05, 1.23it/s]4.07it/ + 16/49 16G 0.02411 0.01586 0 112 1280: 97%|█████████▋| 61/63 [01:49<00:02, 1.09s/it]4.07it/ + 16/49 16G 0.024 0.01587 0 55 1280: 100%|██████████| 63/63 [01:52<00:00, 1.78s/it]4.07it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.80it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.80it/ + 17/49 16G 0.02231 0.01586 0 81 1280: 10%|â–‰ | 6/63 [00:07<00:48, 1.16it/s] 3.80it/ + 17/49 16G 0.02433 0.01651 0 80 1280: 14%|█■| 9/63 [00:10<00:40, 1.35it/s] 3.80it/ + 17/49 16G 0.02375 0.01647 0 83 1280: 22%|██■| 14/63 [00:20<00:50, 1.04s/it]3.80it/ + 17/49 16G 0.02379 0.0168 0 104 1280: 27%|██▋ | 17/63 [00:23<00:38, 1.21it/s]3.80it/ + 17/49 16G 0.0238 0.01668 0 85 1280: 32%|███■| 20/63 [00:38<01:49, 2.54s/it]3.80it/ + 17/49 16G 0.02385 0.017 0 123 1280: 38%|███▊ | 24/63 [00:40<00:39, 1.01s/it]3.80it/ + 17/49 16G 0.02389 0.01686 0 78 1280: 40%|███▉ | 25/63 [00:41<00:34, 1.10it/s]3.80it/ + 17/49 16G 0.02395 0.01669 0 95 1280: 46%|████▌ | 29/63 [00:56<01:01, 1.82s/it]3.80it/ + 17/49 16G 0.02381 0.01639 0 116 1280: 52%|█████■| 33/63 [00:57<00:19, 1.57it/s]3.80it/ + 17/49 16G 0.02374 0.01637 0 123 1280: 60%|██████ | 38/63 [01:08<00:24, 1.04it/s]3.80it/ + 17/49 16G 0.02369 0.01624 0 65 1280: 63%|██████▎ | 40/63 [01:11<00:24, 1.07s/it]3.80it/ + 17/49 16G 0.02373 0.01627 0 103 1280: 65%|██████▌ | 41/63 [01:11<00:18, 1.19it/s]3.80it/ + 17/49 16G 0.02379 0.01627 0 110 1280: 68%|██████▊ | 43/63 [01:21<00:49, 2.48s/it]3.80it/ + 17/49 16G 0.02387 0.01618 0 78 1280: 73%|███████▎ | 46/63 [01:21<00:16, 1.02it/s]3.80it/ + 17/49 16G 0.02384 0.01615 0 81 1280: 78%|███████▊ | 49/63 [01:24<00:10, 1.29it/s]3.80it/ + 17/49 16G 0.02392 0.01607 0 100 1280: 86%|████████▌ | 54/63 [01:35<00:09, 1.04s/it]3.80it/ + 17/49 16G 0.02385 0.01593 0 81 1280: 90%|█████████ | 57/63 [01:37<00:04, 1.29it/s]3.80it/ + 17/49 16G 0.02392 0.01599 0 70 1280: 100%|██████████| 63/63 [01:48<00:00, 1.72s/it]3.80it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.01it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.01it/ + 18/49 16G 0.02339 0.01534 0 91 1280: 16%|█▌ | 10/63 [00:11<00:22, 2.39it/s]4.01it/ + 18/49 16G 0.02355 0.01504 0 140 1280: 29%|██▊ | 18/63 [00:24<00:21, 2.07it/s]4.01it/ + 18/49 16G 0.0233 0.01507 0 90 1280: 33%|███▎ | 21/63 [00:42<02:02, 2.93s/it]4.01it/ + 18/49 16G 0.02335 0.01534 0 110 1280: 40%|███▉ | 25/63 [00:44<00:38, 1.01s/it]4.01it/ + 18/49 16G 0.02331 0.01516 0 66 1280: 41%|████■| 26/63 [00:46<00:54, 1.46s/it]4.01it/ + 18/49 16G 0.02312 0.01507 0 70 1280: 43%|████▎ | 27/63 [00:57<02:29, 4.16s/it]4.01it/ + 18/49 16G 0.02297 0.01525 0 92 1280: 54%|█████■| 34/63 [00:58<00:16, 1.75it/s]4.01it/ + 18/49 16G 0.02291 0.01533 0 90 1280: 60%|██████ | 38/63 [01:11<00:36, 1.47s/it]4.01it/ + 18/49 16G 0.02287 0.0155 0 102 1280: 67%|██████▋ | 42/63 [01:12<00:10, 2.03it/s]4.01it/ + 18/49 16G 0.02289 0.01559 0 89 1280: 79%|███████▉ | 50/63 [01:24<00:06, 2.07it/s]4.01it/ + 18/49 16G 0.02296 0.01565 0 73 1280: 84%|████████■| 53/63 [01:37<00:20, 2.02s/it]4.01it/ + 18/49 16G 0.02289 0.01565 0 104 1280: 92%|█████████â–| 58/63 [01:38<00:02, 2.03it/s]4.01it/ + 18/49 16G 0.0229 0.0157 0 67 1280: 100%|██████████| 63/63 [01:51<00:00, 1.76s/it]4.01it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.03it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.03it/ + 19/49 16G 0.02166 0.01377 0 86 1280: 8%|â–Š | 5/63 [00:09<02:21, 2.45s/it] 4.03it/ + 19/49 16G 0.0222 0.01501 0 77 1280: 17%|█▋ | 11/63 [00:11<00:21, 2.45it/s]4.03it/ + 19/49 16G 0.02258 0.01523 0 62 1280: 29%|██▊ | 18/63 [00:23<00:27, 1.63it/s]4.03it/ + 19/49 16G 0.02244 0.01511 0 86 1280: 30%|███ | 19/63 [00:24<00:21, 2.07it/s]4.03it/ + 19/49 16G 0.02235 0.01497 0 85 1280: 32%|███■| 20/63 [00:35<02:46, 3.88s/it]4.03it/ + 19/49 16G 0.02237 0.01514 0 90 1280: 37%|███▋ | 23/63 [00:36<01:01, 1.54s/it]4.03it/ + 19/49 16G 0.02257 0.01547 0 119 1280: 40%|███▉ | 25/63 [00:39<00:55, 1.45s/it]4.03it/ + 19/49 16G 0.02246 0.01542 0 91 1280: 41%|████■| 26/63 [00:44<01:23, 2.27s/it]4.03it/ + 19/49 16G 0.02243 0.01535 0 96 1280: 43%|████▎ | 27/63 [00:45<01:14, 2.07s/it]4.03it/ + 19/49 16G 0.02228 0.01527 0 103 1280: 46%|████▌ | 29/63 [00:56<01:49, 3.22s/it]4.03it/ + 19/49 16G 0.02217 0.01535 0 117 1280: 56%|█████▌ | 35/63 [00:57<00:16, 1.73it/s]4.03it/ + 19/49 16G 0.02219 0.01526 0 77 1280: 57%|█████▋ | 36/63 [01:10<01:55, 4.27s/it]4.03it/ + 19/49 16G 0.02219 0.01513 0 66 1280: 68%|██████▊ | 43/63 [01:11<00:10, 1.92it/s]4.03it/ + 19/49 16G 0.02216 0.015 0 74 1280: 81%|████████ | 51/63 [01:24<00:05, 2.07it/s]4.03it/ + 19/49 16G 0.02215 0.01494 0 78 1280: 84%|████████■| 53/63 [01:36<00:27, 2.79s/it]4.03it/ + 19/49 16G 0.02198 0.01475 0 75 1280: 94%|█████████▎| 59/63 [01:37<00:01, 2.04it/s]4.03it/ + 19/49 16G 0.02211 0.01473 0 49 1280: 100%|██████████| 63/63 [01:50<00:00, 1.75s/it]4.03it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.10it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.10it/ + 20/49 16G 0.02224 0.01367 0 74 1280: 19%|█▉ | 12/63 [00:11<00:20, 2.43it/s]4.10it/ + 20/49 16G 0.02228 0.014 0 86 1280: 27%|██▋ | 17/63 [00:23<00:49, 1.07s/it]4.10it/ + 20/49 16G 0.02193 0.01374 0 57 1280: 32%|███■| 20/63 [00:24<00:20, 2.07it/s]4.10it/ + 20/49 16G 0.02178 0.01369 0 83 1280: 44%|████■| 28/63 [00:37<00:17, 2.05it/s]4.10it/ + 20/49 16G 0.02178 0.01352 0 84 1280: 51%|█████ | 32/63 [00:57<01:10, 2.26s/it]4.10it/ + 20/49 16G 0.02168 0.01337 0 73 1280: 57%|█████▋ | 36/63 [01:01<00:35, 1.31s/it]4.10it/ + 20/49 16G 0.02151 0.01335 0 81 1280: 70%|██████▉ | 44/63 [01:12<00:09, 2.02it/s]4.10it/ + 20/49 16G 0.02133 0.01333 0 81 1280: 83%|████████▎ | 52/63 [01:24<00:05, 2.19it/s]4.10it/ + 20/49 16G 0.02134 0.01334 0 102 1280: 89%|████████▉ | 56/63 [01:36<00:10, 1.46s/it]4.10it/ + 20/49 16G 0.02145 0.01349 0 71 1280: 95%|█████████▌| 60/63 [01:37<00:01, 2.04it/s]4.10it/ + 20/49 16G 0.0214 0.01358 0 51 1280: 100%|██████████| 63/63 [01:49<00:00, 1.74s/it]4.10it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.08it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.08it/ + 21/49 16G 0.02179 0.01564 0 95 1280: 13%|█▎ | 8/63 [00:10<01:24, 1.54s/it] 4.08it/ + 21/49 16G 0.02176 0.0157 0 97 1280: 21%|██ | 13/63 [00:11<00:20, 2.49it/s]4.08it/ + 21/49 16G 0.0216 0.01509 0 94 1280: 33%|███▎ | 21/63 [00:24<00:20, 2.06it/s]4.08it/ + 21/49 16G 0.02156 0.01502 0 116 1280: 37%|███▋ | 23/63 [00:36<01:50, 2.77s/it]4.08it/ + 21/49 16G 0.02129 0.01485 0 122 1280: 46%|████▌ | 29/63 [00:37<00:16, 2.05it/s]4.08it/ + 21/49 16G 0.02133 0.01484 0 111 1280: 51%|█████ | 32/63 [00:55<01:31, 2.94s/it]4.08it/ + 21/49 16G 0.02134 0.01474 0 75 1280: 59%|█████▊ | 37/63 [00:57<00:18, 1.38it/s]4.08it/ + 21/49 16G 0.02131 0.01467 0 64 1280: 62%|██████■| 39/63 [01:10<01:12, 3.01s/it]4.08it/ + 21/49 16G 0.02116 0.01462 0 66 1280: 71%|███████■| 45/63 [01:11<00:09, 1.85it/s]4.08it/ + 21/49 16G 0.02111 0.01453 0 86 1280: 81%|████████ | 51/63 [01:24<00:09, 1.24it/s]4.08it/ + 21/49 16G 0.02108 0.01453 0 69 1280: 84%|████████■| 53/63 [01:24<00:04, 2.05it/s]4.08it/ + 21/49 16G 0.02111 0.01444 0 102 1280: 90%|█████████ | 57/63 [01:36<00:08, 1.43s/it]4.08it/ + 21/49 16G 0.02105 0.0144 0 68 1280: 97%|█████████▋| 61/63 [01:37<00:01, 1.99it/s]4.08it/ + 21/49 16G 0.02103 0.01447 0 69 1280: 100%|██████████| 63/63 [01:49<00:00, 1.74s/it]4.08it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.05it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.05it/ + 22/49 16G 0.02079 0.01496 0 67 1280: 22%|██■| 14/63 [00:11<00:20, 2.41it/s]4.05it/ + 22/49 16G 0.02061 0.01493 0 101 1280: 29%|██▊ | 18/63 [00:24<01:04, 1.44s/it]4.05it/ + 22/49 16G 0.02052 0.01468 0 92 1280: 35%|███■| 22/63 [00:25<00:19, 2.06it/s]4.05it/ + 22/49 16G 0.02014 0.01441 0 99 1280: 48%|████▊ | 30/63 [00:38<00:16, 2.05it/s]4.05it/ + 22/49 16G 0.02029 0.01449 0 107 1280: 54%|█████■| 34/63 [00:50<00:41, 1.45s/it]4.05it/ + 22/49 16G 0.02024 0.0146 0 79 1280: 60%|██████ | 38/63 [00:51<00:12, 2.04it/s]4.05it/ + 22/49 16G 0.02013 0.01445 0 90 1280: 73%|███████▎ | 46/63 [01:10<00:11, 1.52it/s]4.05it/ + 22/49 16G 0.02016 0.01444 0 101 1280: 84%|████████■| 53/63 [01:24<00:06, 1.49it/s]4.05it/ + 22/49 16G 0.02012 0.01442 0 90 1280: 86%|████████▌ | 54/63 [01:24<00:04, 1.91it/s]4.05it/ + 22/49 16G 0.02014 0.01441 0 73 1280: 90%|█████████ | 57/63 [01:36<00:11, 1.96s/it]4.05it/ + 22/49 16G 0.0203 0.01447 0 110 1280: 98%|█████████▊| 62/63 [01:37<00:00, 2.01it/s]4.05it/ + 22/49 16G 0.02029 0.01449 0 53 1280: 100%|██████████| 63/63 [01:43<00:00, 1.65s/it]4.05it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.02it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.02it/ + 23/49 16G 0.01987 0.01402 0 111 1280: 19%|█▉ | 12/63 [00:11<00:41, 1.24it/s]4.02it/ + 23/49 16G 0.02016 0.01415 0 73 1280: 24%|██■| 15/63 [00:15<00:45, 1.05it/s]4.02it/ + 23/49 16G 0.02017 0.0139 0 72 1280: 32%|███■| 20/63 [00:24<00:38, 1.13it/s]4.02it/ + 23/49 16G 0.01989 0.01393 0 110 1280: 35%|███■| 22/63 [00:28<00:54, 1.33s/it]4.02it/ + 23/49 16G 0.01983 0.01389 0 77 1280: 37%|███▋ | 23/63 [00:28<00:39, 1.02it/s]4.02it/ + 23/49 16G 0.01999 0.01399 0 103 1280: 44%|████■| 28/63 [00:37<00:31, 1.11it/s]4.02it/ + 23/49 16G 0.01961 0.0139 0 90 1280: 49%|████▉ | 31/63 [00:41<00:31, 1.02it/s]4.02it/ + 23/49 16G 0.01971 0.0139 0 85 1280: 56%|█████▌ | 35/63 [00:50<00:33, 1.19s/it]4.02it/ + 23/49 16G 0.01977 0.01412 0 131 1280: 57%|█████▋ | 36/63 [00:50<00:24, 1.11it/s]4.02it/ + 23/49 16G 0.0197 0.01406 0 69 1280: 59%|█████▊ | 37/63 [00:54<00:44, 1.72s/it]4.02it/ + 23/49 16G 0.01961 0.01405 0 106 1280: 62%|██████■| 39/63 [00:54<00:23, 1.03it/s]4.02it/ + 23/49 16G 0.01958 0.01399 0 86 1280: 63%|██████▎ | 40/63 [01:07<01:39, 4.34s/it]4.02it/ + 23/49 16G 0.0195 0.01382 0 58 1280: 70%|██████▉ | 44/63 [01:10<00:28, 1.50s/it]4.02it/ + 23/49 16G 0.01948 0.01377 0 75 1280: 73%|███████▎ | 46/63 [01:12<00:21, 1.25s/it]4.02it/ + 23/49 16G 0.01948 0.01371 0 72 1280: 75%|███████■| 47/63 [01:12<00:14, 1.07it/s]4.02it/ + 23/49 16G 0.01944 0.01373 0 96 1280: 83%|████████▎ | 52/63 [01:22<00:10, 1.02it/s]4.02it/ + 23/49 16G 0.01948 0.01388 0 85 1280: 87%|████████▋ | 55/63 [01:26<00:07, 1.02it/s]4.02it/ + 23/49 16G 0.01946 0.01386 0 71 1280: 95%|█████████▌| 60/63 [01:36<00:02, 1.07it/s]4.02it/ + 23/49 16G 0.01945 0.01383 0 48 1280: 100%|██████████| 63/63 [01:40<00:00, 1.60s/it]4.02it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.04it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.04it/ + 24/49 16G 0.01791 0.01275 0 58 1280: 8%|â–Š | 5/63 [00:05<00:35, 1.62it/s] 4.04it/ + 24/49 16G 0.02079 0.01337 0 90 1280: 13%|█▎ | 8/63 [00:10<00:55, 1.01s/it] 4.04it/ + 24/49 16G 0.01984 0.0132 0 90 1280: 21%|██ | 13/63 [00:19<00:43, 1.15it/s]4.04it/ + 24/49 16G 0.02003 0.01332 0 69 1280: 24%|██■| 15/63 [00:23<01:10, 1.46s/it]4.04it/ + 24/49 16G 0.02005 0.01346 0 104 1280: 25%|██▌ | 16/63 [00:24<00:50, 1.08s/it]4.04it/ + 24/49 16G 0.01999 0.01366 0 105 1280: 30%|███ | 19/63 [00:31<01:08, 1.56s/it]4.04it/ + 24/49 16G 0.02003 0.01386 0 122 1280: 33%|███▎ | 21/63 [00:32<00:36, 1.15it/s]4.04it/ + 24/49 16G 0.01982 0.01394 0 93 1280: 38%|███▊ | 24/63 [00:37<00:41, 1.08s/it]4.04it/ + 24/49 16G 0.01977 0.01405 0 117 1280: 46%|████▌ | 29/63 [00:45<00:29, 1.16it/s]4.04it/ + 24/49 16G 0.01974 0.01402 0 86 1280: 48%|████▊ | 30/63 [00:49<01:01, 1.87s/it]4.04it/ + 24/49 16G 0.01973 0.014 0 113 1280: 51%|█████ | 32/63 [00:50<00:33, 1.08s/it]4.04it/ + 24/49 16G 0.01972 0.01398 0 96 1280: 59%|█████▊ | 37/63 [00:58<00:22, 1.16it/s]4.04it/ + 24/49 16G 0.01957 0.01397 0 87 1280: 63%|██████▎ | 40/63 [01:03<00:24, 1.08s/it]4.04it/ + 24/49 16G 0.01964 0.01406 0 99 1280: 70%|██████▉ | 44/63 [01:11<00:21, 1.14s/it]4.04it/ + 24/49 16G 0.01963 0.01409 0 103 1280: 71%|███████■| 45/63 [01:11<00:15, 1.16it/s]4.04it/ + 24/49 16G 0.01949 0.01408 0 103 1280: 76%|███████▌ | 48/63 [01:21<00:26, 1.74s/it]4.04it/ + 24/49 16G 0.01943 0.01405 0 81 1280: 79%|███████▉ | 50/63 [01:31<00:39, 3.07s/it]4.04it/ + 24/49 16G 0.01938 0.01405 0 111 1280: 84%|████████■| 53/63 [01:32<00:12, 1.24s/it]4.04it/ + 24/49 16G 0.01931 0.01395 0 70 1280: 89%|████████▉ | 56/63 [01:36<00:08, 1.15s/it]4.04it/ + 24/49 16G 0.01927 0.01381 0 93 1280: 97%|█████████▋| 61/63 [01:45<00:01, 1.15it/s]4.04it/ + 24/49 16G 0.01924 0.01372 0 38 1280: 100%|██████████| 63/63 [01:49<00:00, 1.74s/it]4.04it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.03it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.03it/ + 25/49 16G 0.01472 0.01211 0 85 1280: 10%|â–‰ | 6/63 [00:05<00:29, 1.91it/s] 4.03it/ + 25/49 16G 0.01551 0.0126 0 64 1280: 14%|█■| 9/63 [00:11<00:59, 1.10s/it] 4.03it/ + 25/49 16G 0.01725 0.01299 0 97 1280: 22%|██■| 14/63 [00:18<00:40, 1.21it/s]4.03it/ + 25/49 16G 0.01673 0.01276 0 83 1280: 27%|██▋ | 17/63 [00:24<00:51, 1.13s/it]4.03it/ + 25/49 16G 0.01706 0.01302 0 102 1280: 32%|███■| 20/63 [00:31<01:05, 1.51s/it]4.03it/ + 25/49 16G 0.01731 0.01307 0 74 1280: 35%|███■| 22/63 [00:31<00:34, 1.19it/s]4.03it/ + 25/49 16G 0.01706 0.01288 0 80 1280: 40%|███▉ | 25/63 [00:37<00:42, 1.11s/it]4.03it/ + 25/49 16G 0.01726 0.01311 0 99 1280: 48%|████▊ | 30/63 [00:45<00:27, 1.19it/s]4.03it/ + 25/49 16G 0.0172 0.01308 0 68 1280: 52%|█████■| 33/63 [00:50<00:33, 1.11s/it]4.03it/ + 25/49 16G 0.01729 0.01305 0 80 1280: 56%|█████▌ | 35/63 [00:57<00:58, 2.08s/it]4.03it/ + 25/49 16G 0.01737 0.01294 0 98 1280: 60%|██████ | 38/63 [00:58<00:21, 1.19it/s]4.03it/ + 25/49 16G 0.01732 0.01283 0 88 1280: 65%|██████▌ | 41/63 [01:03<00:24, 1.11s/it]4.03it/ + 25/49 16G 0.01746 0.01306 0 116 1280: 73%|███████▎ | 46/63 [01:11<00:14, 1.19it/s]4.03it/ + 25/49 16G 0.01746 0.01302 0 80 1280: 75%|███████■| 47/63 [01:16<00:33, 2.06s/it]4.03it/ + 25/49 16G 0.01748 0.01304 0 93 1280: 76%|███████▌ | 48/63 [01:22<00:48, 3.23s/it]4.03it/ + 25/49 16G 0.0175 0.01307 0 98 1280: 78%|███████▊ | 49/63 [01:26<00:48, 3.44s/it]4.03it/ + 25/49 16G 0.01754 0.01321 0 98 1280: 84%|████████■| 53/63 [01:31<00:14, 1.48s/it]4.03it/ + 25/49 16G 0.01755 0.0132 0 91 1280: 86%|████████▌ | 54/63 [01:32<00:10, 1.19s/it]4.03it/ + 25/49 16G 0.01754 0.01306 0 69 1280: 89%|████████▉ | 56/63 [01:40<00:15, 2.26s/it]4.03it/ + 25/49 16G 0.01756 0.01307 0 100 1280: 90%|█████████ | 57/63 [01:40<00:10, 1.67s/it]4.03it/ + 25/49 16G 0.01756 0.01292 0 30 1280: 100%|██████████| 63/63 [01:48<00:00, 1.73s/it]4.03it/ + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:01<00:00, 4.00it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.06it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.06it/ + 26/49 16G 0.01755 0.01277 0 82 1280: 16%|█▌ | 10/63 [00:09<00:21, 2.44it/s]4.06it/ + 26/49 16G 0.01745 0.01291 0 89 1280: 29%|██▊ | 18/63 [00:23<00:22, 2.04it/s]4.06it/ + 26/49 16G 0.01739 0.01291 0 117 1280: 33%|███▎ | 21/63 [00:35<01:23, 1.98s/it]4.06it/ + 26/49 16G 0.01735 0.01275 0 93 1280: 41%|████■| 26/63 [00:36<00:18, 1.99it/s]4.06it/ + 26/49 16G 0.01729 0.0127 0 103 1280: 52%|█████■| 33/63 [00:49<00:19, 1.54it/s]4.06it/ + 26/49 16G 0.01731 0.01278 0 108 1280: 54%|█████■| 34/63 [00:49<00:14, 1.97it/s]4.06it/ + 26/49 16G 0.01733 0.01295 0 93 1280: 57%|█████▋ | 36/63 [01:01<01:14, 2.76s/it]4.06it/ + 26/49 16G 0.01725 0.01272 0 93 1280: 67%|██████▋ | 42/63 [01:02<00:10, 1.95it/s]4.06it/ + 26/49 16G 0.01721 0.01271 0 113 1280: 76%|███████▌ | 48/63 [01:15<00:12, 1.18it/s]4.06it/ + 26/49 16G 0.01722 0.01279 0 109 1280: 79%|███████▉ | 50/63 [01:15<00:06, 1.97it/s]4.06it/ + 26/49 16G 0.0172 0.0127 0 82 1280: 83%|████████▎ | 52/63 [01:33<00:44, 4.09s/it]4.06it/ + 26/49 16G 0.01719 0.01273 0 90 1280: 86%|████████▌ | 54/63 [01:35<00:21, 2.37s/it]4.06it/ + 26/49 16G 0.01719 0.0126 0 57 1280: 92%|█████████â–| 58/63 [01:36<00:03, 1.29it/s]4.06it/ + 26/49 16G 0.01719 0.01264 0 99 1280: 95%|█████████▌| 60/63 [01:48<00:08, 2.81s/it]4.06it/ + 26/49 16G 0.01719 0.01262 0 55 1280: 100%|██████████| 63/63 [01:48<00:00, 1.73s/it]4.06it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 2.79it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 2.79it/ + 27/49 16G 0.01904 0.01133 0 86 1280: 5%|â– | 3/63 [00:02<00:33, 1.81it/s] 2.79it/ + 27/49 16G 0.01743 0.01194 0 72 1280: 14%|█■| 9/63 [00:08<00:33, 1.62it/s] 2.79it/ + 27/49 16G 0.0178 0.01227 0 100 1280: 17%|█▋ | 11/63 [00:09<00:20, 2.56it/s]2.79it/ + 27/49 16G 0.01794 0.01252 0 94 1280: 19%|█▉ | 12/63 [00:20<03:14, 3.81s/it]2.79it/ + 27/49 16G 0.01766 0.01317 0 81 1280: 30%|███ | 19/63 [00:22<00:24, 1.81it/s]2.79it/ + 27/49 16G 0.01773 0.01309 0 99 1280: 37%|███▋ | 23/63 [00:34<00:57, 1.45s/it]2.79it/ + 27/49 16G 0.01768 0.01295 0 73 1280: 43%|████▎ | 27/63 [00:35<00:19, 1.83it/s]2.79it/ + 27/49 16G 0.01772 0.01307 0 124 1280: 52%|█████■| 33/63 [00:48<00:28, 1.06it/s]2.79it/ + 27/49 16G 0.01772 0.01317 0 111 1280: 56%|█████▌ | 35/63 [00:49<00:15, 1.81it/s]2.79it/ + 27/49 16G 0.01781 0.01305 0 71 1280: 60%|██████ | 38/63 [01:00<00:48, 1.95s/it]2.79it/ + 27/49 16G 0.01773 0.01295 0 87 1280: 68%|██████▊ | 43/63 [01:02<00:10, 1.83it/s]2.79it/ + 27/49 16G 0.01766 0.01285 0 88 1280: 78%|███████▊ | 49/63 [01:14<00:12, 1.09it/s]2.79it/ + 27/49 16G 0.01777 0.0128 0 86 1280: 81%|████████ | 51/63 [01:15<00:06, 1.85it/s]2.79it/ + 27/49 16G 0.0178 0.01275 0 79 1280: 84%|████████■| 53/63 [01:26<00:27, 2.71s/it]2.79it/ + 27/49 16G 0.01772 0.0126 0 72 1280: 94%|█████████▎| 59/63 [01:28<00:02, 1.84it/s]2.79it/ + 27/49 16G 0.01771 0.01267 0 54 1280: 100%|██████████| 63/63 [01:47<00:00, 1.71s/it]2.79it/ + Class Images Instances P R mAP50 mAP50-95: 62%|██████▎ | 5/8 [00:01<00:00, 3.52it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.04it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.04it/ + 28/49 16G 0.01416 0.01092 0 108 1280: 6%|â–‹ | 4/63 [00:02<00:40, 1.44it/s] 3.04it/ + 28/49 16G 0.01658 0.01184 0 84 1280: 19%|█▉ | 12/63 [00:10<00:18, 2.72it/s]3.04it/ + 28/49 16G 0.01645 0.01207 0 103 1280: 24%|██■| 15/63 [00:22<01:34, 1.96s/it]3.04it/ + 28/49 16G 0.01632 0.01198 0 87 1280: 32%|███■| 20/63 [00:23<00:20, 2.08it/s]3.04it/ + 28/49 16G 0.01635 0.01234 0 103 1280: 41%|████■| 26/63 [00:37<00:30, 1.21it/s]3.04it/ + 28/49 16G 0.01638 0.01224 0 76 1280: 44%|████■| 28/63 [00:37<00:17, 2.01it/s]3.04it/ + 28/49 16G 0.01644 0.01226 0 139 1280: 57%|█████▋ | 36/63 [00:50<00:13, 2.04it/s]3.04it/ + 28/49 16G 0.01665 0.01235 0 89 1280: 63%|██████▎ | 40/63 [01:02<00:33, 1.46s/it]3.04it/ + 28/49 16G 0.01662 0.01237 0 129 1280: 70%|██████▉ | 44/63 [01:03<00:09, 2.04it/s]3.04it/ + 28/49 16G 0.01675 0.01257 0 88 1280: 83%|████████▎ | 52/63 [01:16<00:05, 2.04it/s]3.04it/ + 28/49 16G 0.01674 0.01257 0 101 1280: 84%|████████■| 53/63 [01:28<00:39, 3.97s/it]3.04it/ + 28/49 16G 0.01681 0.01255 0 93 1280: 95%|█████████▌| 60/63 [01:30<00:01, 2.02it/s]3.04it/ + 28/49 16G 0.01681 0.01255 0 92 1280: 98%|█████████▊| 62/63 [01:48<00:04, 4.10s/it]3.04it/ + 28/49 16G 0.01682 0.0125 0 32 1280: 100%|██████████| 63/63 [01:48<00:00, 1.73s/it]3.04it/ + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:03<00:01, 1.92it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:04<00:00, 1.75it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:04<00:00, 1.75it/ + 29/49 16G 0.01561 0.01334 0 69 1280: 8%|â–Š | 5/63 [00:02<00:20, 2.81it/s] 1.75it/ + 29/49 16G 0.0153 0.01351 0 114 1280: 10%|â–‰ | 6/63 [00:09<02:27, 2.58s/it] 1.75it/ + 29/49 16G 0.01618 0.01299 0 78 1280: 21%|██ | 13/63 [00:10<00:18, 2.76it/s]1.75it/ + 29/49 16G 0.01645 0.01263 0 89 1280: 33%|███▎ | 21/63 [00:22<00:19, 2.17it/s]1.75it/ + 29/49 16G 0.01653 0.01253 0 72 1280: 40%|███▉ | 25/63 [00:35<00:55, 1.47s/it]1.75it/ + 29/49 16G 0.01641 0.01263 0 116 1280: 46%|████▌ | 29/63 [00:36<00:16, 2.03it/s]1.75it/ + 29/49 16G 0.0164 0.01258 0 93 1280: 59%|█████▊ | 37/63 [00:49<00:12, 2.04it/s]1.75it/ + 29/49 16G 0.01636 0.0125 0 67 1280: 62%|██████■| 39/63 [01:01<01:06, 2.79s/it]1.75it/ + 29/49 16G 0.01635 0.01233 0 73 1280: 71%|███████■| 45/63 [01:02<00:08, 2.04it/s]1.75it/ + 29/49 16G 0.01636 0.01228 0 79 1280: 78%|███████▊ | 49/63 [01:15<00:21, 1.51s/it]1.75it/ + 29/49 16G 0.01629 0.01222 0 106 1280: 84%|████████■| 53/63 [01:16<00:05, 1.99it/s]1.75it/ + 29/49 16G 0.01634 0.01251 0 129 1280: 97%|█████████▋| 61/63 [01:29<00:00, 2.08it/s]1.75it/ + 29/49 16G 0.01627 0.01245 0 40 1280: 100%|██████████| 63/63 [01:46<00:00, 1.69s/it]1.75it/ + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:03<00:01, 1.77it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.18it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.18it/ + 30/49 16G 0.01544 0.01133 0 97 1280: 8%|â–Š | 5/63 [00:05<00:38, 1.50it/s] 2.18it/ + 30/49 16G 0.01545 0.01105 0 73 1280: 10%|â–‰ | 6/63 [00:08<01:25, 1.51s/it] 2.18it/ + 30/49 16G 0.01527 0.01147 0 84 1280: 22%|██■| 14/63 [00:11<00:14, 3.33it/s]2.18it/ + 30/49 16G 0.01536 0.01185 0 129 1280: 27%|██▋ | 17/63 [00:24<01:30, 1.97s/it]2.18it/ + 30/49 16G 0.0155 0.01189 0 90 1280: 35%|███■| 22/63 [00:25<00:19, 2.07it/s]2.18it/ + 30/49 16G 0.01553 0.01162 0 101 1280: 46%|████▌ | 29/63 [00:38<00:21, 1.59it/s]2.18it/ + 30/49 16G 0.01557 0.01163 0 87 1280: 48%|████▊ | 30/63 [00:38<00:16, 2.03it/s]2.18it/ + 30/49 16G 0.01568 0.01181 0 98 1280: 60%|██████ | 38/63 [00:51<00:12, 2.03it/s]2.18it/ + 30/49 16G 0.01586 0.01204 0 78 1280: 68%|██████▊ | 43/63 [01:04<00:21, 1.09s/it]2.18it/ + 30/49 16G 0.01579 0.01197 0 103 1280: 73%|███████▎ | 46/63 [01:04<00:08, 2.03it/s]2.18it/ + 30/49 16G 0.0158 0.01198 0 76 1280: 86%|████████▌ | 54/63 [01:18<00:04, 2.04it/s]2.18it/ + 30/49 16G 0.01581 0.01201 0 100 1280: 89%|████████▉ | 56/63 [01:30<00:19, 2.84s/it]2.18it/ + 30/49 16G 0.01575 0.01201 0 91 1280: 98%|█████████▊| 62/63 [01:31<00:00, 2.02it/s]2.18it/ + 30/49 16G 0.01573 0.01204 0 59 1280: 100%|██████████| 63/63 [01:37<00:00, 1.54s/it]2.18it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.93it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.93it/ + 31/49 16G 0.01608 0.01262 0 107 1280: 10%|â–‰ | 6/63 [00:02<00:33, 1.72it/s] 3.93it/ + 31/49 16G 0.01556 0.01266 0 106 1280: 11%|â–ˆ | 7/63 [00:05<01:20, 1.44s/it] 3.93it/ + 31/49 16G 0.01586 0.01293 0 111 1280: 14%|█■| 9/63 [00:17<02:51, 3.18s/it] 3.93it/ + 31/49 16G 0.01581 0.01279 0 77 1280: 19%|█▉ | 12/63 [00:17<01:03, 1.25s/it]3.93it/ + 31/49 16G 0.01567 0.01255 0 90 1280: 24%|██■| 15/63 [00:23<01:02, 1.31s/it]3.93it/ + 31/49 16G 0.01547 0.0123 0 79 1280: 30%|███ | 19/63 [00:33<01:02, 1.42s/it]3.93it/ + 31/49 16G 0.01551 0.01245 0 104 1280: 32%|███■| 20/63 [00:33<00:45, 1.06s/it]3.93it/ + 31/49 16G 0.01546 0.01237 0 102 1280: 37%|███▋ | 23/63 [00:37<00:42, 1.05s/it]3.93it/ + 31/49 16G 0.01544 0.0124 0 103 1280: 40%|███▉ | 25/63 [00:45<01:23, 2.19s/it]3.93it/ + 31/49 16G 0.01547 0.0124 0 95 1280: 44%|████■| 28/63 [00:46<00:38, 1.09s/it]3.93it/ + 31/49 16G 0.0154 0.01221 0 50 1280: 49%|████▉ | 31/63 [00:50<00:35, 1.10s/it]3.93it/ + 31/49 16G 0.01546 0.01222 0 93 1280: 54%|█████■| 34/63 [00:58<00:46, 1.60s/it]3.93it/ + 31/49 16G 0.01542 0.01233 0 95 1280: 57%|█████▋ | 36/63 [01:00<00:28, 1.07s/it]3.93it/ + 31/49 16G 0.01541 0.0123 0 79 1280: 60%|██████ | 38/63 [01:03<00:30, 1.22s/it]3.93it/ + 31/49 16G 0.01541 0.01232 0 108 1280: 62%|██████■| 39/63 [01:04<00:25, 1.08s/it]3.93it/ + 31/49 16G 0.01543 0.01223 0 115 1280: 70%|██████▉ | 44/63 [01:13<00:19, 1.03s/it]3.93it/ + 31/49 16G 0.01554 0.01218 0 68 1280: 75%|███████■| 47/63 [01:17<00:17, 1.08s/it]3.93it/ + 31/49 16G 0.01551 0.01211 0 98 1280: 79%|███████▉ | 50/63 [01:25<00:20, 1.61s/it]3.93it/ + 31/49 16G 0.01547 0.01207 0 84 1280: 83%|████████▎ | 52/63 [01:26<00:11, 1.04s/it]3.93it/ + 31/49 16G 0.01541 0.01207 0 89 1280: 87%|████████▋ | 55/63 [01:30<00:08, 1.09s/it]3.93it/ + 31/49 16G 0.01547 0.01203 0 61 1280: 94%|█████████▎| 59/63 [01:39<00:05, 1.32s/it]3.93it/ + 31/49 16G 0.01548 0.01201 0 82 1280: 95%|█████████▌| 60/63 [01:39<00:03, 1.03s/it]3.93it/ + 31/49 16G 0.01541 0.01194 0 49 1280: 100%|██████████| 63/63 [01:43<00:00, 1.64s/it]3.93it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 4.00it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 4.00it/ + 32/49 16G 0.0152 0.0123 0 89 1280: 2%|â– | 1/63 [00:05<05:44, 5.55s/it] 4.00it/ + 32/49 16G 0.01287 0.01065 0 93 1280: 8%|â–Š | 5/63 [00:07<00:49, 1.17it/s] 4.00it/ + 32/49 16G 0.01552 0.01129 0 81 1280: 13%|█▎ | 8/63 [00:10<00:45, 1.21it/s] 4.00it/ + 32/49 16G 0.01475 0.0109 0 98 1280: 21%|██ | 13/63 [00:25<01:05, 1.32s/it]4.00it/ + 32/49 16G 0.01497 0.01122 0 116 1280: 22%|██■| 14/63 [00:31<02:22, 2.92s/it]4.00it/ + 32/49 16G 0.01528 0.01132 0 84 1280: 25%|██▌ | 16/63 [00:32<01:14, 1.59s/it]4.00it/ + 32/49 16G 0.01506 0.01177 0 106 1280: 33%|███▎ | 21/63 [00:41<00:41, 1.02it/s]4.00it/ + 32/49 16G 0.01508 0.01166 0 88 1280: 37%|███▋ | 23/63 [00:44<00:45, 1.15s/it]4.00it/ + 32/49 16G 0.01508 0.01163 0 83 1280: 38%|███▊ | 24/63 [00:44<00:33, 1.17it/s]4.00it/ + 32/49 16G 0.015 0.01168 0 116 1280: 46%|████▌ | 29/63 [00:53<00:35, 1.04s/it]4.00it/ + 32/49 16G 0.01489 0.01134 0 62 1280: 51%|█████ | 32/63 [00:57<00:29, 1.04it/s]4.00it/ + 32/49 16G 0.01497 0.01133 0 63 1280: 56%|█████▌ | 35/63 [01:06<00:45, 1.61s/it]4.00it/ + 32/49 16G 0.01492 0.01137 0 95 1280: 59%|█████▊ | 37/63 [01:07<00:27, 1.04s/it]4.00it/ + 32/49 16G 0.0149 0.0114 0 98 1280: 60%|██████ | 38/63 [01:10<00:39, 1.58s/it]4.00it/ + 32/49 16G 0.01493 0.01145 0 104 1280: 63%|██████▎ | 40/63 [01:10<00:22, 1.03it/s]4.00it/ + 32/49 16G 0.01497 0.0114 0 66 1280: 70%|██████▉ | 44/63 [01:20<00:26, 1.38s/it]4.00it/ + 32/49 16G 0.01497 0.01142 0 105 1280: 71%|███████■| 45/63 [01:20<00:18, 1.03s/it]4.00it/ + 32/49 16G 0.01488 0.01144 0 111 1280: 76%|███████▌ | 48/63 [01:24<00:14, 1.03it/s]4.00it/ + 32/49 16G 0.01488 0.01145 0 71 1280: 79%|███████▉ | 50/63 [01:32<00:28, 2.22s/it]4.00it/ + 32/49 16G 0.01494 0.01154 0 102 1280: 84%|████████■| 53/63 [01:33<00:10, 1.03s/it]4.00it/ + 32/49 16G 0.01491 0.01152 0 93 1280: 86%|████████▌ | 54/63 [01:36<00:13, 1.55s/it]4.00it/ + 32/49 16G 0.01488 0.01155 0 78 1280: 89%|████████▉ | 56/63 [01:37<00:06, 1.04it/s]4.00it/ + 32/49 16G 0.01491 0.01156 0 105 1280: 94%|█████████▎| 59/63 [01:45<00:06, 1.65s/it]4.00it/ + 32/49 16G 0.01497 0.01157 0 81 1280: 97%|█████████▋| 61/63 [01:46<00:01, 1.01it/s]4.00it/ + 32/49 16G 0.01492 0.01152 0 51 1280: 100%|██████████| 63/63 [01:49<00:00, 1.74s/it]4.00it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.07it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.07it/ + 33/49 16G 0.01141 0.009245 0 96 1280: 10%|â–‰ | 6/63 [00:07<00:46, 1.22it/s] 4.07it/ + 33/49 16G 0.01324 0.0102 0 87 1280: 14%|█■| 9/63 [00:10<00:41, 1.29it/s] 4.07it/ + 33/49 16G 0.01343 0.01035 0 106 1280: 22%|██■| 14/63 [00:25<01:10, 1.43s/it]4.07it/ + 33/49 16G 0.01414 0.01087 0 97 1280: 27%|██▋ | 17/63 [00:26<00:29, 1.55it/s]4.07it/ + 33/49 16G 0.01429 0.01083 0 112 1280: 35%|███■| 22/63 [00:40<00:49, 1.21s/it]4.07it/ + 33/49 16G 0.0143 0.0109 0 116 1280: 40%|███▉ | 25/63 [00:42<00:27, 1.36it/s]4.07it/ + 33/49 16G 0.01423 0.01085 0 86 1280: 41%|████■| 26/63 [00:52<02:14, 3.64s/it]4.07it/ + 33/49 16G 0.01438 0.01096 0 80 1280: 48%|████▊ | 30/63 [00:53<00:36, 1.11s/it]4.07it/ + 33/49 16G 0.01428 0.01105 0 86 1280: 52%|█████■| 33/63 [00:56<00:24, 1.24it/s]4.07it/ + 33/49 16G 0.01438 0.01113 0 73 1280: 57%|█████▋ | 36/63 [01:05<00:45, 1.68s/it]4.07it/ + 33/49 16G 0.0144 0.01105 0 62 1280: 60%|██████ | 38/63 [01:07<00:28, 1.15s/it]4.07it/ + 33/49 16G 0.01431 0.01102 0 87 1280: 65%|██████▌ | 41/63 [01:09<00:18, 1.22it/s]4.07it/ + 33/49 16G 0.01426 0.01099 0 86 1280: 67%|██████▋ | 42/63 [01:18<01:08, 3.24s/it]4.07it/ + 33/49 16G 0.01432 0.01096 0 51 1280: 73%|███████▎ | 46/63 [01:20<00:19, 1.14s/it]4.07it/ + 33/49 16G 0.01425 0.01092 0 80 1280: 75%|███████■| 47/63 [01:22<00:23, 1.46s/it]4.07it/ + 33/49 16G 0.0142 0.01102 0 122 1280: 78%|███████▊ | 49/63 [01:23<00:11, 1.24it/s]4.07it/ + 33/49 16G 0.01422 0.011 0 72 1280: 83%|████████▎ | 52/63 [01:32<00:18, 1.67s/it]4.07it/ + 33/49 16G 0.01429 0.01097 0 69 1280: 86%|████████▌ | 54/63 [01:33<00:10, 1.13s/it]4.07it/ + 33/49 16G 0.01423 0.01108 0 105 1280: 90%|█████████ | 57/63 [01:36<00:04, 1.24it/s]4.07it/ + 33/49 16G 0.0142 0.01118 0 92 1280: 97%|█████████▋| 61/63 [01:46<00:03, 1.50s/it]4.07it/ + 33/49 16G 0.01415 0.01118 0 50 1280: 100%|██████████| 63/63 [01:47<00:00, 1.70s/it]4.07it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.04it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.04it/ + 34/49 16G 0.01365 0.01108 0 96 1280: 14%|█■| 9/63 [00:11<00:34, 1.58it/s] 4.04it/ + 34/49 16G 0.01372 0.01089 0 71 1280: 16%|█▌ | 10/63 [00:11<00:26, 2.03it/s]4.04it/ + 34/49 16G 0.01393 0.011 0 114 1280: 21%|██ | 13/63 [00:22<01:32, 1.85s/it]4.04it/ + 34/49 16G 0.01396 0.01122 0 81 1280: 24%|██■| 15/63 [00:25<01:11, 1.48s/it]4.04it/ + 34/49 16G 0.01391 0.01137 0 103 1280: 29%|██▊ | 18/63 [00:28<00:46, 1.03s/it]4.04it/ + 34/49 16G 0.01388 0.01126 0 81 1280: 41%|████■| 26/63 [00:43<00:21, 1.73it/s]4.04it/ + 34/49 16G 0.01394 0.01127 0 84 1280: 46%|████▌ | 29/63 [00:55<01:06, 1.97s/it]4.04it/ + 34/49 16G 0.01397 0.01105 0 93 1280: 54%|█████■| 34/63 [00:57<00:16, 1.72it/s]4.04it/ + 34/49 16G 0.01398 0.0111 0 97 1280: 56%|█████▌ | 35/63 [01:07<01:35, 3.41s/it]4.04it/ + 34/49 16G 0.01396 0.01118 0 124 1280: 59%|█████▊ | 37/63 [01:07<00:45, 1.76s/it]4.04it/ + 34/49 16G 0.01396 0.01104 0 93 1280: 67%|██████▋ | 42/63 [01:10<00:12, 1.67it/s]4.04it/ + 34/49 16G 0.01397 0.01112 0 95 1280: 71%|███████■| 45/63 [01:21<00:31, 1.75s/it]4.04it/ + 34/49 16G 0.01395 0.01115 0 115 1280: 73%|███████▎ | 46/63 [01:23<00:32, 1.91s/it]4.04it/ + 34/49 16G 0.01395 0.01113 0 93 1280: 79%|███████▉ | 50/63 [01:24<00:07, 1.67it/s]4.04it/ + 34/49 16G 0.01402 0.01112 0 73 1280: 84%|████████■| 53/63 [01:34<00:17, 1.74s/it]4.04it/ + 34/49 16G 0.014 0.01112 0 93 1280: 92%|█████████â–| 58/63 [01:37<00:02, 1.69it/s]4.04it/ + 34/49 16G 0.014 0.01113 0 93 1280: 95%|█████████▌| 60/63 [01:47<00:07, 2.45s/it]4.04it/ + 34/49 16G 0.014 0.01117 0 108 1280: 97%|█████████▋| 61/63 [01:47<00:03, 1.77s/it]4.04it/ + 34/49 16G 0.01403 0.01122 0 73 1280: 100%|██████████| 63/63 [01:50<00:00, 1.75s/it]4.04it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.06it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.06it/ + 35/49 16G 0.0141 0.01203 0 87 1280: 17%|█▋ | 11/63 [00:11<00:26, 1.96it/s]4.06it/ + 35/49 16G 0.01411 0.0119 0 111 1280: 21%|██ | 13/63 [00:21<01:59, 2.38s/it]4.06it/ + 35/49 16G 0.01418 0.01206 0 109 1280: 22%|██■| 14/63 [00:21<01:24, 1.72s/it]4.06it/ + 35/49 16G 0.01413 0.01142 0 77 1280: 30%|███ | 19/63 [00:24<00:25, 1.70it/s]4.06it/ + 35/49 16G 0.01413 0.01165 0 103 1280: 33%|███▎ | 21/63 [00:41<02:41, 3.85s/it]4.06it/ + 35/49 16G 0.0141 0.0115 0 69 1280: 43%|████▎ | 27/63 [00:43<00:24, 1.47it/s]4.06it/ + 35/49 16G 0.01395 0.01136 0 85 1280: 54%|█████■| 34/63 [00:57<00:20, 1.39it/s]4.06it/ + 35/49 16G 0.01394 0.01137 0 93 1280: 56%|█████▌ | 35/63 [00:57<00:15, 1.79it/s]4.06it/ + 35/49 16G 0.01394 0.01124 0 64 1280: 60%|██████ | 38/63 [01:08<00:45, 1.83s/it]4.06it/ + 35/49 16G 0.0139 0.01114 0 70 1280: 68%|██████▊ | 43/63 [01:10<00:11, 1.74it/s]4.06it/ + 35/49 16G 0.01388 0.01114 0 93 1280: 71%|███████■| 45/63 [01:21<00:45, 2.51s/it]4.06it/ + 35/49 16G 0.01385 0.01106 0 56 1280: 73%|███████▎ | 46/63 [01:21<00:30, 1.81s/it]4.06it/ + 35/49 16G 0.01378 0.01109 0 82 1280: 81%|████████ | 51/63 [01:24<00:06, 1.72it/s]4.06it/ + 35/49 16G 0.01378 0.01106 0 71 1280: 86%|████████▌ | 54/63 [01:34<00:16, 1.79s/it]4.06it/ + 35/49 16G 0.01376 0.0111 0 87 1280: 90%|█████████ | 57/63 [01:37<00:06, 1.02s/it]4.06it/ + 35/49 16G 0.01373 0.01113 0 86 1280: 94%|█████████▎| 59/63 [01:37<00:02, 1.69it/s]4.06it/ + 35/49 16G 0.01377 0.01112 0 49 1280: 100%|██████████| 63/63 [01:48<00:00, 1.72s/it]4.06it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.06it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.06it/ + 36/49 16G 0.0132 0.009729 0 71 1280: 19%|█▉ | 12/63 [00:11<00:20, 2.43it/s]4.06it/ + 36/49 16G 0.01293 0.01022 0 112 1280: 32%|███■| 20/63 [00:24<00:20, 2.07it/s]4.06it/ + 36/49 16G 0.01292 0.01028 0 103 1280: 43%|████▎ | 27/63 [00:42<00:30, 1.20it/s]4.06it/ + 36/49 16G 0.01298 0.01042 0 114 1280: 44%|████■| 28/63 [00:42<00:23, 1.47it/s]4.06it/ + 36/49 16G 0.01289 0.01041 0 76 1280: 49%|████▉ | 31/63 [00:56<01:14, 2.33s/it]4.06it/ + 36/49 16G 0.01291 0.01059 0 78 1280: 57%|█████▋ | 36/63 [00:58<00:15, 1.75it/s]4.06it/ + 36/49 16G 0.0129 0.01065 0 97 1280: 70%|██████▉ | 44/63 [01:11<00:09, 1.93it/s]4.06it/ + 36/49 16G 0.0129 0.01055 0 73 1280: 76%|███████▌ | 48/63 [01:22<00:21, 1.41s/it]4.06it/ + 36/49 16G 0.01295 0.01051 0 123 1280: 83%|████████▎ | 52/63 [01:24<00:06, 1.61it/s]4.06it/ + 36/49 16G 0.01299 0.01041 0 90 1280: 92%|█████████â–| 58/63 [01:36<00:04, 1.24it/s]4.06it/ + 36/49 16G 0.01298 0.01045 0 120 1280: 95%|█████████▌| 60/63 [01:37<00:01, 1.61it/s]4.06it/ + 36/49 16G 0.013 0.01048 0 90 1280: 98%|█████████▊| 62/63 [01:49<00:02, 2.72s/it]4.06it/ + 36/49 16G 0.01303 0.01053 0 67 1280: 100%|██████████| 63/63 [01:49<00:00, 1.73s/it]4.06it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.98it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.98it/ + 37/49 16G 0.01241 0.009625 0 82 1280: 21%|██ | 13/63 [00:12<00:24, 2.01it/s]3.98it/ + 37/49 16G 0.01248 0.00997 0 83 1280: 33%|███▎ | 21/63 [00:25<00:24, 1.70it/s]3.98it/ + 37/49 16G 0.01247 0.009954 0 77 1280: 37%|███▋ | 23/63 [00:43<02:45, 4.14s/it]3.98it/ + 37/49 16G 0.01244 0.01002 0 98 1280: 46%|████▌ | 29/63 [00:45<00:26, 1.30it/s]3.98it/ + 37/49 16G 0.01245 0.01009 0 107 1280: 49%|████▉ | 31/63 [00:57<01:31, 2.85s/it]3.98it/ + 37/49 16G 0.01271 0.01039 0 99 1280: 59%|█████▊ | 37/63 [00:59<00:13, 1.94it/s]3.98it/ + 37/49 16G 0.01267 0.0105 0 106 1280: 70%|██████▉ | 44/63 [01:12<00:11, 1.60it/s]3.98it/ + 37/49 16G 0.01266 0.01047 0 83 1280: 71%|███████■| 45/63 [01:12<00:08, 2.03it/s]3.98it/ + 37/49 16G 0.01268 0.01044 0 74 1280: 76%|███████▌ | 48/63 [01:23<00:29, 1.94s/it]3.98it/ + 37/49 16G 0.01257 0.01032 0 59 1280: 84%|████████■| 53/63 [01:25<00:05, 1.91it/s]3.98it/ + 37/49 16G 0.01262 0.01044 0 124 1280: 95%|█████████▌| 60/63 [01:37<00:01, 1.60it/s]3.98it/ + 37/49 16G 0.01265 0.01041 0 74 1280: 97%|█████████▋| 61/63 [01:38<00:01, 1.86it/s]3.98it/ + 37/49 16G 0.01263 0.01044 0 106 1280: 98%|█████████▊| 62/63 [01:50<00:03, 3.90s/it]3.98it/ + 37/49 16G 0.01262 0.01046 0 58 1280: 100%|██████████| 63/63 [01:50<00:00, 1.75s/it]3.98it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.97it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.97it/ + 38/49 16G 0.01198 0.01111 0 89 1280: 17%|█▋ | 11/63 [00:10<00:42, 1.21it/s]3.97it/ + 38/49 16G 0.01243 0.01121 0 70 1280: 22%|██■| 14/63 [00:11<00:21, 2.23it/s]3.97it/ + 38/49 16G 0.01251 0.01123 0 78 1280: 35%|███■| 22/63 [00:24<00:22, 1.84it/s]3.97it/ + 38/49 16G 0.01235 0.01083 0 75 1280: 41%|████■| 26/63 [00:36<00:53, 1.45s/it]3.97it/ + 38/49 16G 0.01233 0.01077 0 83 1280: 48%|████▊ | 30/63 [00:37<00:17, 1.86it/s]3.97it/ + 38/49 16G 0.01235 0.01081 0 113 1280: 54%|█████■| 34/63 [00:58<01:08, 2.36s/it]3.97it/ + 38/49 16G 0.01238 0.01073 0 91 1280: 60%|██████ | 38/63 [00:59<00:17, 1.42it/s]3.97it/ + 38/49 16G 0.01241 0.01088 0 110 1280: 73%|███████▎ | 46/63 [01:12<00:08, 1.98it/s]3.97it/ + 38/49 16G 0.01234 0.01084 0 68 1280: 83%|████████▎ | 52/63 [01:25<00:08, 1.28it/s]3.97it/ + 38/49 16G 0.01232 0.0109 0 104 1280: 86%|████████▌ | 54/63 [01:25<00:04, 2.11it/s]3.97it/ + 38/49 16G 0.01232 0.01084 0 116 1280: 98%|█████████▊| 62/63 [01:38<00:00, 2.03it/s]3.97it/ + 38/49 16G 0.01232 0.01084 0 52 1280: 100%|██████████| 63/63 [01:44<00:00, 1.66s/it]3.97it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.97it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.97it/ + 39/49 16G 0.01186 0.0101 0 81 1280: 11%|â–ˆ | 7/63 [00:03<00:28, 1.96it/s] 3.97it/ + 39/49 16G 0.01212 0.01022 0 85 1280: 16%|█▌ | 10/63 [00:10<01:12, 1.36s/it]3.97it/ + 39/49 16G 0.01216 0.009851 0 73 1280: 19%|█▉ | 12/63 [00:12<00:50, 1.01it/s]3.97it/ + 39/49 16G 0.01219 0.01013 0 83 1280: 24%|██■| 15/63 [00:16<00:48, 1.00s/it]3.97it/ + 39/49 16G 0.01211 0.0103 0 109 1280: 32%|███■| 20/63 [00:25<00:45, 1.05s/it]3.97it/ + 39/49 16G 0.01218 0.01032 0 98 1280: 35%|███■| 22/63 [00:29<00:53, 1.32s/it]3.97it/ + 39/49 16G 0.01213 0.01044 0 106 1280: 37%|███▋ | 23/63 [00:29<00:41, 1.05s/it]3.97it/ + 39/49 16G 0.0121 0.01045 0 106 1280: 41%|████■| 26/63 [00:37<00:56, 1.52s/it]3.97it/ + 39/49 16G 0.01203 0.01036 0 80 1280: 44%|████■| 28/63 [00:38<00:36, 1.05s/it]3.97it/ + 39/49 16G 0.01196 0.01021 0 72 1280: 49%|████▉ | 31/63 [00:42<00:33, 1.05s/it]3.97it/ + 39/49 16G 0.01195 0.01014 0 94 1280: 56%|█████▌ | 35/63 [00:56<00:53, 1.91s/it]3.97it/ + 39/49 16G 0.0119 0.01005 0 71 1280: 60%|██████ | 38/63 [01:00<00:30, 1.23s/it]3.97it/ + 39/49 16G 0.0119 0.01021 0 155 1280: 62%|██████■| 39/63 [01:01<00:28, 1.18s/it]3.97it/ + 39/49 16G 0.01197 0.01023 0 102 1280: 70%|██████▉ | 44/63 [01:11<00:19, 1.02s/it]3.97it/ + 39/49 16G 0.01192 0.01022 0 63 1280: 75%|███████■| 47/63 [01:16<00:19, 1.22s/it]3.97it/ + 39/49 16G 0.01189 0.01018 0 86 1280: 83%|████████▎ | 52/63 [01:24<00:09, 1.14it/s]3.97it/ + 39/49 16G 0.01186 0.01008 0 60 1280: 87%|████████▋ | 55/63 [01:28<00:07, 1.02it/s]3.97it/ + 39/49 16G 0.01187 0.01018 0 113 1280: 92%|█████████â–| 58/63 [01:37<00:08, 1.63s/it]3.97it/ + 39/49 16G 0.01186 0.0102 0 100 1280: 95%|█████████▌| 60/63 [01:37<00:02, 1.10it/s]3.97it/ + 39/49 16G 0.01185 0.01019 0 64 1280: 100%|██████████| 63/63 [01:42<00:00, 1.62s/it]3.97it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.03it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.03it/ + 40/49 16G 0.01111 0.01028 0 87 1280: 8%|â–Š | 5/63 [00:07<00:43, 1.33it/s] 4.03it/ + 40/49 16G 0.01179 0.01029 0 68 1280: 11%|â–ˆ | 7/63 [00:11<01:07, 1.21s/it] 4.03it/ + 40/49 16G 0.01182 0.01007 0 74 1280: 13%|█▎ | 8/63 [00:11<00:48, 1.13it/s] 4.03it/ + 40/49 16G 0.01133 0.01033 0 91 1280: 21%|██ | 13/63 [00:20<00:45, 1.11it/s]4.03it/ + 40/49 16G 0.01146 0.01019 0 62 1280: 25%|██▌ | 16/63 [00:24<00:44, 1.06it/s]4.03it/ + 40/49 16G 0.01149 0.009993 0 73 1280: 30%|███ | 19/63 [00:33<01:11, 1.64s/it]4.03it/ + 40/49 16G 0.0114 0.009705 0 67 1280: 33%|███▎ | 21/63 [00:33<00:39, 1.06it/s]4.03it/ + 40/49 16G 0.0115 0.009961 0 86 1280: 38%|███▊ | 24/63 [00:37<00:36, 1.06it/s]4.03it/ + 40/49 16G 0.01165 0.00993 0 94 1280: 46%|████▌ | 29/63 [00:46<00:31, 1.06it/s]4.03it/ + 40/49 16G 0.01157 0.009958 0 84 1280: 51%|█████ | 32/63 [00:50<00:29, 1.05it/s]4.03it/ + 40/49 16G 0.01159 0.01005 0 115 1280: 56%|█████▌ | 35/63 [01:04<01:09, 2.50s/it]4.03it/ + 40/49 16G 0.01168 0.01022 0 98 1280: 59%|█████▊ | 37/63 [01:06<00:45, 1.74s/it]4.03it/ + 40/49 16G 0.0116 0.01014 0 108 1280: 63%|██████▎ | 40/63 [01:08<00:22, 1.02it/s]4.03it/ + 40/49 16G 0.01166 0.01019 0 113 1280: 71%|███████■| 45/63 [01:21<00:20, 1.14s/it]4.03it/ + 40/49 16G 0.01166 0.01012 0 92 1280: 75%|███████■| 47/63 [01:23<00:16, 1.03s/it]4.03it/ + 40/49 16G 0.01163 0.01015 0 113 1280: 76%|███████▌ | 48/63 [01:24<00:15, 1.01s/it]4.03it/ + 40/49 16G 0.01157 0.01007 0 72 1280: 79%|███████▉ | 50/63 [01:33<00:31, 2.44s/it]4.03it/ + 40/49 16G 0.01156 0.009983 0 79 1280: 84%|████████■| 53/63 [01:34<00:09, 1.04it/s]4.03it/ + 40/49 16G 0.0116 0.01015 0 119 1280: 89%|████████▉ | 56/63 [01:38<00:06, 1.04it/s]4.03it/ + 40/49 16G 0.01156 0.01008 0 101 1280: 97%|█████████▋| 61/63 [01:47<00:02, 1.00s/it]4.03it/ + 40/49 16G 0.01156 0.01016 0 71 1280: 100%|██████████| 63/63 [01:51<00:00, 1.77s/it]4.03it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.04it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.04it/ + 41/49 16G 0.01018 0.009997 0 100 1280: 5%|â– | 3/63 [00:05<01:51, 1.86s/it] 4.04it/ + 41/49 16G 0.01009 0.01013 0 81 1280: 10%|â–‰ | 6/63 [00:06<00:42, 1.34it/s] 4.04it/ + 41/49 16G 0.01034 0.009715 0 82 1280: 14%|█■| 9/63 [00:11<00:52, 1.03it/s] 4.04it/ + 41/49 16G 0.01042 0.01008 0 97 1280: 21%|██ | 13/63 [00:19<00:56, 1.12s/it]4.04it/ + 41/49 16G 0.01046 0.01002 0 86 1280: 22%|██■| 14/63 [00:19<00:47, 1.03it/s]4.04it/ + 41/49 16G 0.01063 0.01035 0 131 1280: 27%|██▋ | 17/63 [00:24<00:48, 1.06s/it]4.04it/ + 41/49 16G 0.01062 0.01014 0 89 1280: 35%|███■| 22/63 [00:33<00:40, 1.02it/s]4.04it/ + 41/49 16G 0.01074 0.01035 0 79 1280: 40%|███▉ | 25/63 [00:37<00:40, 1.07s/it]4.04it/ + 41/49 16G 0.01068 0.01011 0 91 1280: 46%|████▌ | 29/63 [00:45<00:38, 1.12s/it]4.04it/ + 41/49 16G 0.01065 0.01014 0 99 1280: 48%|████▊ | 30/63 [00:46<00:31, 1.03it/s]4.04it/ + 41/49 16G 0.01072 0.01023 0 102 1280: 52%|█████■| 33/63 [00:50<00:31, 1.06s/it]4.04it/ + 41/49 16G 0.01065 0.01017 0 91 1280: 60%|██████ | 38/63 [00:59<00:24, 1.03it/s]4.04it/ + 41/49 16G 0.01065 0.01024 0 110 1280: 65%|██████▌ | 41/63 [01:11<00:47, 2.14s/it]4.04it/ + 41/49 16G 0.01071 0.01023 0 76 1280: 73%|███████▎ | 46/63 [01:21<00:22, 1.30s/it]4.04it/ + 41/49 16G 0.01073 0.01017 0 99 1280: 78%|███████▊ | 49/63 [01:25<00:14, 1.04s/it]4.04it/ + 41/49 16G 0.01071 0.01002 0 73 1280: 86%|████████▌ | 54/63 [01:33<00:07, 1.17it/s]4.04it/ + 41/49 16G 0.01071 0.009971 0 89 1280: 90%|█████████ | 57/63 [01:38<00:06, 1.10s/it]4.04it/ + 41/49 16G 0.01073 0.01004 0 91 1280: 95%|█████████▌| 60/63 [01:46<00:04, 1.48s/it]4.04it/ + 41/49 16G 0.01073 0.009994 0 35 1280: 100%|██████████| 63/63 [01:46<00:00, 1.69s/it]4.04it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.03it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.03it/ + 42/49 16G 0.01068 0.009499 0 84 1280: 16%|█▌ | 10/63 [00:11<00:22, 2.36it/s]4.03it/ + 42/49 16G 0.01076 0.009855 0 89 1280: 29%|██▊ | 18/63 [00:24<00:21, 2.05it/s]4.03it/ + 42/49 16G 0.01067 0.009801 0 86 1280: 35%|███■| 22/63 [00:36<00:59, 1.46s/it]4.03it/ + 42/49 16G 0.01051 0.009763 0 113 1280: 41%|████■| 26/63 [00:37<00:18, 2.04it/s]4.03it/ + 42/49 16G 0.01048 0.009675 0 109 1280: 54%|█████■| 34/63 [00:50<00:14, 2.05it/s]4.03it/ + 42/49 16G 0.01045 0.009621 0 81 1280: 57%|█████▋ | 36/63 [01:02<01:14, 2.78s/it]4.03it/ + 42/49 16G 0.0104 0.00961 0 96 1280: 67%|██████▋ | 42/63 [01:03<00:10, 2.05it/s]4.03it/ + 42/49 16G 0.01034 0.009487 0 83 1280: 76%|███████▌ | 48/63 [01:23<00:17, 1.14s/it]4.03it/ + 42/49 16G 0.01035 0.00952 0 108 1280: 79%|███████▉ | 50/63 [01:23<00:09, 1.38it/s]4.03it/ + 42/49 16G 0.01034 0.009515 0 81 1280: 81%|████████ | 51/63 [01:39<01:01, 5.13s/it]4.03it/ + 42/49 16G 0.01034 0.00947 0 106 1280: 92%|█████████â–| 58/63 [01:40<00:03, 1.60it/s]4.03it/ + 42/49 16G 0.01034 0.009524 0 94 1280: 98%|█████████▊| 62/63 [01:51<00:01, 1.27s/it]4.03it/ + 42/49 16G 0.01035 0.009521 0 46 1280: 100%|██████████| 63/63 [01:51<00:00, 1.77s/it]4.03it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.02it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.02it/ + 43/49 16G 0.009967 0.009406 0 99 1280: 17%|█▋ | 11/63 [00:11<00:25, 2.00it/s]4.02it/ + 43/49 16G 0.009777 0.009233 0 77 1280: 30%|███ | 19/63 [00:24<00:24, 1.82it/s]4.02it/ + 43/49 16G 0.009833 0.00892 0 68 1280: 38%|███▊ | 24/63 [00:36<00:40, 1.05s/it]4.02it/ + 43/49 16G 0.009942 0.009076 0 104 1280: 43%|████▎ | 27/63 [00:37<00:20, 1.79it/s]4.02it/ + 43/49 16G 0.009853 0.009029 0 82 1280: 54%|█████■| 34/63 [00:50<00:21, 1.38it/s]4.02it/ + 43/49 16G 0.009853 0.009143 0 129 1280: 56%|█████▌ | 35/63 [00:51<00:15, 1.78it/s]4.02it/ + 43/49 16G 0.009933 0.009228 0 93 1280: 62%|██████■| 39/63 [01:02<00:33, 1.41s/it]4.02it/ + 43/49 16G 0.01002 0.009329 0 99 1280: 68%|██████▊ | 43/63 [01:04<00:11, 1.77it/s]4.02it/ + 43/49 16G 0.01002 0.00932 0 92 1280: 70%|██████▉ | 44/63 [01:20<01:43, 5.42s/it]4.02it/ + 43/49 16G 0.01004 0.00937 0 110 1280: 71%|███████■| 45/63 [01:22<01:17, 4.30s/it]4.02it/ + 43/49 16G 0.01003 0.009423 0 102 1280: 76%|███████▌ | 48/63 [01:24<00:28, 1.90s/it]4.02it/ + 43/49 16G 0.01006 0.009449 0 95 1280: 78%|███████▊ | 49/63 [01:26<00:24, 1.74s/it]4.02it/ + 43/49 16G 0.01012 0.009554 0 120 1280: 81%|████████ | 51/63 [01:29<00:18, 1.56s/it]4.02it/ + 43/49 16G 0.01012 0.009593 0 92 1280: 94%|█████████▎| 59/63 [01:37<00:01, 2.29it/s]4.02it/ + 43/49 16G 0.01014 0.009587 0 88 1280: 97%|█████████▋| 61/63 [01:49<00:05, 2.79s/it]4.02it/ + 43/49 16G 0.01014 0.009579 0 57 1280: 100%|██████████| 63/63 [01:50<00:00, 1.75s/it]4.02it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.98it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.98it/ + 44/49 16G 0.01018 0.008905 0 67 1280: 16%|█▌ | 10/63 [00:10<00:38, 1.37it/s]3.98it/ + 44/49 16G 0.00997 0.008718 0 74 1280: 19%|█▉ | 12/63 [00:11<00:22, 2.25it/s]3.98it/ + 44/49 16G 0.00991 0.00883 0 108 1280: 21%|██ | 13/63 [00:22<03:12, 3.84s/it]3.98it/ + 44/49 16G 0.009629 0.008722 0 102 1280: 32%|███■| 20/63 [00:24<00:22, 1.89it/s]3.98it/ + 44/49 16G 0.009576 0.008837 0 100 1280: 40%|███▉ | 25/63 [00:36<00:40, 1.07s/it]3.98it/ + 44/49 16G 0.009545 0.008856 0 104 1280: 44%|████■| 28/63 [00:37<00:18, 1.88it/s]3.98it/ + 44/49 16G 0.009407 0.00902 0 93 1280: 57%|█████▋ | 36/63 [00:50<00:14, 1.87it/s]3.98it/ + 44/49 16G 0.009443 0.008943 0 72 1280: 63%|██████▎ | 40/63 [01:02<00:33, 1.44s/it]3.98it/ + 44/49 16G 0.009412 0.008976 0 68 1280: 70%|██████▉ | 44/63 [01:04<00:10, 1.81it/s]3.98it/ + 44/49 16G 0.009457 0.009065 0 104 1280: 78%|███████▊ | 49/63 [01:16<00:15, 1.08s/it]3.98it/ + 44/49 16G 0.009478 0.009092 0 87 1280: 83%|████████▎ | 52/63 [01:17<00:06, 1.62it/s]3.98it/ + 44/49 16G 0.009499 0.009016 0 81 1280: 95%|█████████▌| 60/63 [01:37<00:02, 1.48it/s]3.98it/ + 44/49 16G 0.00951 0.008997 0 52 1280: 100%|██████████| 63/63 [01:48<00:00, 1.73s/it]3.98it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.99it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.99it/ + 45/49 16G 0.009296 0.00869 0 108 1280: 13%|█▎ | 8/63 [00:10<01:23, 1.52s/it] 3.99it/ + 45/49 16G 0.009327 0.009047 0 88 1280: 21%|██ | 13/63 [00:11<00:24, 2.01it/s]3.99it/ + 45/49 16G 0.00955 0.00916 0 112 1280: 29%|██▊ | 18/63 [00:23<00:46, 1.04s/it]3.99it/ + 45/49 16G 0.009557 0.008976 0 82 1280: 33%|███▎ | 21/63 [00:25<00:24, 1.70it/s]3.99it/ + 45/49 16G 0.009532 0.008948 0 77 1280: 35%|███■| 22/63 [00:36<02:34, 3.77s/it]3.99it/ + 45/49 16G 0.009589 0.009163 0 119 1280: 46%|████▌ | 29/63 [00:38<00:19, 1.72it/s]3.99it/ + 45/49 16G 0.009598 0.009088 0 111 1280: 54%|█████■| 34/63 [00:50<00:30, 1.05s/it]3.99it/ + 45/49 16G 0.009656 0.009066 0 92 1280: 59%|█████▊ | 37/63 [00:51<00:14, 1.74it/s]3.99it/ + 45/49 16G 0.009637 0.009132 0 118 1280: 68%|██████▊ | 43/63 [01:04<00:19, 1.00it/s]3.99it/ + 45/49 16G 0.00962 0.009139 0 72 1280: 71%|███████■| 45/63 [01:04<00:10, 1.72it/s]3.99it/ + 45/49 16G 0.009616 0.009146 0 77 1280: 78%|███████▊ | 49/63 [01:16<00:19, 1.40s/it]3.99it/ + 45/49 16G 0.009609 0.009239 0 99 1280: 84%|████████■| 53/63 [01:17<00:05, 1.72it/s]3.99it/ + 45/49 16G 0.009621 0.009231 0 90 1280: 89%|████████▉ | 56/63 [01:36<00:21, 3.01s/it]3.99it/ + 45/49 16G 0.009661 0.009217 0 103 1280: 97%|█████████▋| 61/63 [01:37<00:01, 1.48it/s]3.99it/ + 45/49 16G 0.009659 0.009199 0 75 1280: 100%|██████████| 63/63 [01:49<00:00, 1.74s/it]3.99it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.89it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.89it/ + 46/49 16G 0.008917 0.008715 0 92 1280: 14%|█■| 9/63 [00:09<01:16, 1.41s/it] 3.89it/ + 46/49 16G 0.008807 0.008587 0 72 1280: 22%|██■| 14/63 [00:11<00:22, 2.20it/s]3.89it/ + 46/49 16G 0.008806 0.008886 0 107 1280: 30%|███ | 19/63 [00:23<00:46, 1.05s/it]3.89it/ + 46/49 16G 0.008912 0.0089 0 95 1280: 35%|███■| 22/63 [00:24<00:22, 1.83it/s]3.89it/ + 46/49 16G 0.008934 0.008889 0 59 1280: 48%|████▊ | 30/63 [00:37<00:18, 1.83it/s]3.89it/ + 46/49 16G 0.009019 0.008776 0 67 1280: 54%|█████■| 34/63 [00:49<00:41, 1.43s/it]3.89it/ + 46/49 16G 0.009122 0.008688 0 93 1280: 60%|██████ | 38/63 [00:50<00:13, 1.86it/s]3.89it/ + 46/49 16G 0.009192 0.008616 0 89 1280: 71%|███████■| 45/63 [01:03<00:12, 1.44it/s]3.89it/ + 46/49 16G 0.009166 0.008573 0 68 1280: 73%|███████▎ | 46/63 [01:04<00:09, 1.85it/s]3.89it/ + 46/49 16G 0.009143 0.008477 0 91 1280: 78%|███████▊ | 49/63 [01:15<00:27, 1.95s/it]3.89it/ + 46/49 16G 0.009129 0.008505 0 74 1280: 86%|████████▌ | 54/63 [01:17<00:04, 1.82it/s]3.89it/ + 46/49 16G 0.009136 0.008648 0 87 1280: 95%|█████████▌| 60/63 [01:36<00:03, 1.19s/it]3.89it/ + 46/49 16G 0.009152 0.008728 0 93 1280: 98%|█████████▊| 62/63 [01:36<00:00, 1.44it/s]3.89it/ + 46/49 16G 0.009163 0.008728 0 52 1280: 100%|██████████| 63/63 [01:43<00:00, 1.64s/it]3.89it/ + Class Images Instances P R mAP50 mAP50-95: 88%|████████▊ | 7/8 [00:02<00:00, 3.43it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 2.71it/ + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 2.71it/ + 47/49 16G 0.008766 0.008579 0 74 1280: 11%|â–ˆ | 7/63 [00:03<00:17, 3.15it/s] 2.71it/ + 47/49 16G 0.008997 0.00888 0 119 1280: 16%|█▌ | 10/63 [00:09<00:58, 1.10s/it]2.71it/ + 47/49 16G 0.00881 0.008917 0 120 1280: 19%|█▉ | 12/63 [00:11<00:46, 1.10it/s]2.71it/ + 47/49 16G 0.008871 0.008901 0 91 1280: 24%|██■| 15/63 [00:16<00:52, 1.09s/it]2.71it/ + 47/49 16G 0.008922 0.00886 0 95 1280: 29%|██▊ | 18/63 [00:22<01:01, 1.37s/it]2.71it/ + 47/49 16G 0.008816 0.008924 0 124 1280: 32%|███■| 20/63 [00:24<00:48, 1.13s/it]2.71it/ + 47/49 16G 0.008682 0.008749 0 64 1280: 37%|███▋ | 23/63 [00:29<00:45, 1.14s/it]2.71it/ + 47/49 16G 0.008758 0.00877 0 81 1280: 41%|████■| 26/63 [00:35<00:51, 1.39s/it]2.71it/ + 47/49 16G 0.008784 0.008803 0 96 1280: 43%|████▎ | 27/63 [00:37<00:54, 1.52s/it]2.71it/ + 47/49 16G 0.008717 0.008758 0 87 1280: 44%|████■| 28/63 [00:37<00:39, 1.12s/it]2.71it/ + 47/49 16G 0.008714 0.008808 0 83 1280: 49%|████▉ | 31/63 [00:42<00:36, 1.14s/it]2.71it/ + 47/49 16G 0.008709 0.008896 0 113 1280: 54%|█████■| 34/63 [00:49<00:39, 1.38s/it]2.71it/ + 47/49 16G 0.00868 0.008902 0 92 1280: 57%|█████▋ | 36/63 [00:51<00:30, 1.13s/it]2.71it/ + 47/49 16G 0.008683 0.008857 0 83 1280: 60%|██████ | 38/63 [00:55<00:38, 1.55s/it]2.71it/ + 47/49 16G 0.008696 0.00886 0 68 1280: 62%|██████■| 39/63 [00:55<00:27, 1.14s/it]2.71it/ + 47/49 16G 0.008726 0.008906 0 83 1280: 65%|██████▌ | 41/63 [01:01<00:39, 1.80s/it]2.71it/ + 47/49 16G 0.008733 0.008888 0 93 1280: 67%|██████▋ | 42/63 [01:02<00:29, 1.40s/it]2.71it/ + 47/49 16G 0.00871 0.008905 0 103 1280: 70%|██████▉ | 44/63 [01:04<00:21, 1.12s/it]2.71it/ + 47/49 16G 0.008759 0.008933 0 134 1280: 75%|███████■| 47/63 [01:09<00:18, 1.13s/it]2.71it/ + 47/49 16G 0.008758 0.00892 0 110 1280: 79%|███████▉ | 50/63 [01:15<00:17, 1.36s/it]2.71it/ + 47/49 16G 0.008769 0.00891 0 64 1280: 83%|████████▎ | 52/63 [01:17<00:12, 1.10s/it]2.71it/ + 47/49 16G 0.008796 0.008988 0 127 1280: 86%|████████▌ | 54/63 [01:21<00:13, 1.53s/it]2.71it/ + 47/49 16G 0.008791 0.008963 0 84 1280: 87%|████████▋ | 55/63 [01:22<00:08, 1.12s/it]2.71it/ + 47/49 16G 0.008758 0.008983 0 100 1280: 92%|█████████â–| 58/63 [01:28<00:06, 1.36s/it]2.71it/ + 47/49 16G 0.008732 0.008925 0 104 1280: 95%|█████████▌| 60/63 [01:30<00:03, 1.09s/it]2.71it/ + 47/49 16G 0.008753 0.008941 0 43 1280: 100%|██████████| 63/63 [01:41<00:00, 1.61s/it]2.71it/ + Class Images Instances P R mAP50 mAP50-95: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.30it/ + 48/49 16G 0.009268 0.01285 0 124 1280: 2%|â– | 1/63 [00:02<02:54, 2.81s/it] 3.30it/ + 48/49 16G 0.009042 0.008958 0 114 1280: 8%|â–Š | 5/63 [00:04<00:32, 1.77it/s] 3.30it/ + 48/49 16G 0.009007 0.008807 0 83 1280: 10%|â–‰ | 6/63 [00:07<01:10, 1.24s/it] 3.30it/ + 48/49 16G 0.008751 0.00845 0 82 1280: 13%|█▎ | 8/63 [00:07<00:44, 1.23it/s] 3.30it/ + 48/49 16G 0.008765 0.008923 0 110 1280: 17%|█▋ | 11/63 [00:16<01:24, 1.63s/it]3.30it/ + 48/49 16G 0.008849 0.0091 0 97 1280: 21%|██ | 13/63 [00:18<00:54, 1.08s/it]3.30it/ + 48/49 16G 0.008685 0.008582 0 62 1280: 25%|██▌ | 16/63 [00:22<00:50, 1.08s/it]3.30it/ + 48/49 16G 0.00865 0.008609 0 85 1280: 27%|██▋ | 17/63 [00:29<02:03, 2.69s/it]3.30it/ + 48/49 16G 0.008728 0.008548 0 83 1280: 30%|███ | 19/63 [00:29<01:06, 1.51s/it]3.30it/ + 48/49 16G 0.008759 0.008546 0 70 1280: 33%|███▎ | 21/63 [00:31<00:47, 1.14s/it]3.30it/ + 48/49 16G 0.008812 0.008725 0 128 1280: 38%|███▊ | 24/63 [00:36<00:42, 1.10s/it]3.30it/ + 48/49 16G 0.008803 0.008829 0 81 1280: 43%|████▎ | 27/63 [00:43<00:54, 1.50s/it]3.30it/ + 48/49 16G 0.008792 0.008848 0 107 1280: 46%|████▌ | 29/63 [00:44<00:38, 1.12s/it]3.30it/ + 48/49 16G 0.008746 0.008895 0 87 1280: 49%|████▉ | 31/63 [00:49<00:47, 1.47s/it]3.30it/ + 48/49 16G 0.008755 0.008911 0 89 1280: 51%|█████ | 32/63 [00:49<00:33, 1.08s/it]3.30it/ + 48/49 16G 0.008709 0.008786 0 81 1280: 56%|█████▌ | 35/63 [00:56<00:41, 1.49s/it]3.30it/ + 48/49 16G 0.008666 0.008736 0 73 1280: 59%|█████▊ | 37/63 [00:57<00:28, 1.11s/it]3.30it/ + 48/49 16G 0.008662 0.008698 0 61 1280: 63%|██████▎ | 40/63 [01:02<00:24, 1.08s/it]3.30it/ + 48/49 16G 0.008631 0.008582 0 71 1280: 67%|██████▋ | 42/63 [01:08<00:39, 1.89s/it]3.30it/ + 48/49 16G 0.008675 0.008708 0 104 1280: 71%|███████■| 45/63 [01:11<00:19, 1.11s/it]3.30it/ + 48/49 16G 0.008595 0.008674 0 64 1280: 76%|███████▌ | 48/63 [01:15<00:16, 1.08s/it]3.30it/ + 48/49 16G 0.008574 0.008711 0 95 1280: 81%|████████ | 51/63 [01:22<00:17, 1.46s/it]3.30it/ + 48/49 16G 0.00856 0.00867 0 76 1280: 84%|████████■| 53/63 [01:24<00:11, 1.11s/it]3.30it/ + 48/49 16G 0.008577 0.00862 0 84 1280: 89%|████████▉ | 56/63 [01:28<00:07, 1.12s/it]3.30it/ + 48/49 16G 0.008571 0.008605 0 92 1280: 92%|█████████â–| 58/63 [01:35<00:09, 1.86s/it]3.30it/ + 48/49 16G 0.008591 0.008556 0 95 1280: 95%|█████████▌| 60/63 [01:37<00:04, 1.48s/it]3.30it/ + 48/49 16G 0.008589 0.008559 0 94 1280: 97%|█████████▋| 61/63 [01:37<00:02, 1.10s/it]3.30it/ + 48/49 16G 0.008574 0.008543 0 69 1280: 100%|██████████| 63/63 [01:41<00:00, 1.61s/it]3.30it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.95it/ + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.95it/ + 49/49 16G 0.006208 0.006229 0 80 1280: 2%|â– | 1/63 [00:05<05:59, 5.79s/it] 3.95it/ + 49/49 16G 0.007945 0.007149 0 86 1280: 10%|â–‰ | 6/63 [00:09<00:42, 1.33it/s] 3.95it/ + 49/49 16G 0.007921 0.007597 0 113 1280: 11%|â–ˆ | 7/63 [00:14<01:49, 1.96s/it] 3.95it/ + 49/49 16G 0.007948 0.008051 0 103 1280: 14%|█■| 9/63 [00:15<01:06, 1.22s/it] 3.95it/ + 49/49 16G 0.008085 0.008203 0 88 1280: 16%|█▌ | 10/63 [00:22<02:45, 3.13s/it]3.95it/ + 49/49 16G 0.00815 0.008469 0 94 1280: 22%|██■| 14/63 [00:23<00:43, 1.13it/s]3.95it/ + 49/49 16G 0.008123 0.008664 0 89 1280: 27%|██▋ | 17/63 [00:29<00:56, 1.23s/it]3.95it/ + 49/49 16G 0.008186 0.008515 0 80 1280: 33%|███▎ | 21/63 [00:36<00:58, 1.38s/it]3.95it/ + 49/49 16G 0.008252 0.008575 0 99 1280: 35%|███■| 22/63 [00:37<00:42, 1.03s/it]3.95it/ + 49/49 16G 0.0084 0.008744 0 125 1280: 40%|███▉ | 25/63 [00:42<00:45, 1.20s/it]3.95it/ + 49/49 16G 0.008375 0.008832 0 108 1280: 44%|████■| 28/63 [00:48<00:48, 1.39s/it]3.95it/ + 49/49 16G 0.008385 0.008788 0 90 1280: 48%|████▊ | 30/63 [00:50<00:34, 1.03s/it]3.95it/ + 49/49 16G 0.008324 0.008754 0 69 1280: 52%|█████■| 33/63 [00:55<00:35, 1.20s/it]3.95it/ + 49/49 16G 0.008316 0.00866 0 52 1280: 57%|█████▋ | 36/63 [01:02<00:37, 1.41s/it]3.95it/ + 49/49 16G 0.008276 0.008634 0 93 1280: 60%|██████ | 38/63 [01:03<00:25, 1.01s/it]3.95it/ + 49/49 16G 0.008288 0.008557 0 86 1280: 63%|██████▎ | 40/63 [01:08<00:37, 1.62s/it]3.95it/ + 49/49 16G 0.008302 0.008587 0 110 1280: 65%|██████▌ | 41/63 [01:09<00:26, 1.19s/it]3.95it/ + 49/49 16G 0.008309 0.008586 0 92 1280: 68%|██████▊ | 43/63 [01:14<00:36, 1.83s/it]3.95it/ + 49/49 16G 0.008334 0.008639 0 132 1280: 73%|███████▎ | 46/63 [01:16<00:17, 1.00s/it]3.95it/ + 49/49 16G 0.008312 0.008619 0 89 1280: 78%|███████▊ | 49/63 [01:22<00:16, 1.19s/it]3.95it/ + 49/49 16G 0.008308 0.008556 0 65 1280: 83%|████████▎ | 52/63 [01:28<00:15, 1.39s/it]3.95it/ + 49/49 16G 0.008296 0.008535 0 82 1280: 86%|████████▌ | 54/63 [01:29<00:08, 1.01it/s]3.95it/ + 49/49 16G 0.008323 0.008572 0 96 1280: 90%|█████████ | 57/63 [01:35<00:07, 1.20s/it]3.95it/ + 49/49 16G 0.008333 0.008566 0 97 1280: 97%|█████████▋| 61/63 [01:42<00:02, 1.33s/it]3.95it/ + 49/49 16G 0.008354 0.008658 0 83 1280: 100%|██████████| 63/63 [01:43<00:00, 1.64s/it]3.95it/ +50 epochs completed in 1.538 hours.Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.02it/ +Model summary: 212 layers, 20852934 parameters, 0 gradients, 47.9 GFLOPsmAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.02it/ +Model summary: 212 layers, 20852934 parameters, 0 gradients, 47.9 GFLOPsmAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.02it/ +Results saved to [1mruns/train/6beetle_7-non_clean_bkg_overlap[22m, 47.9 GFLOPsmAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.02it/ +Results saved to [1mruns/train/6beetle_7-non_clean_bkg_overlap[22m, 47.9 GFLOPsmAP50 mAP50-95: 100%|██████████| 8/8 [00:01<00:00, 4.02it/ \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/requirements.txt b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-metadata.json b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..74ca079eb9c39b1cfe515bd622e802a4ed9de56e --- /dev/null +++ b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-metadata.json @@ -0,0 +1,37 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-03-06T00:24:30.200847", + "startedAt": "2023-03-06T00:24:25.562712", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 2, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "16", + "--epochs", + "50", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt", + "--name", + "6beetle_7-non_clean_bkg_overlap" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "2947388220788d472924edf218216805d3dca38f" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..e03fda4b6cc22222ff56cbdc98d84401f11097d8 --- /dev/null +++ b/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json @@ -0,0 +1 @@ +{"best/epoch": 49, "best/precision": 0.9964120357204234, "best/recall": 0.9988249118683902, "best/mAP_0.5": 0.9949881936245571, "best/mAP_0.5:0.95": 0.9343615694224278, "Labels": {"_type": "images/separated", "width": 1600, "height": 1600, "format": "jpg", "count": 2, "filenames": ["media/images/Labels_0_688adbaf4bfe9105092c.jpg", "media/images/Labels_0_951374f4059853176577.jpg"], "captions": ["labels.jpg", "labels_correlogram.jpg"]}, "Mosaics": {"_type": "images/separated", "width": 1920, "height": 1920, "format": "jpg", "count": 3, "filenames": ["media/images/Mosaics_0_bc6ca511d46aa2a2bac8.jpg", "media/images/Mosaics_0_17c2e2fc63e75c51efd3.jpg", "media/images/Mosaics_0_31ae070518e136612999.jpg"], "captions": ["train_batch0.jpg", "train_batch1.jpg", "train_batch2.jpg"]}, "train/box_loss": 0.00835442915558815, "train/obj_loss": 0.008657622151076794, "train/cls_loss": 0.0, "metrics/precision": 0.9964062434164662, "metrics/recall": 0.9988249118683902, "metrics/mAP_0.5": 0.9949881936245571, "metrics/mAP_0.5:0.95": 0.9342430858546757, "val/box_loss": 0.0076772975735366344, "val/obj_loss": 0.007902979850769043, "val/cls_loss": 0.0, "x/lr0": 0.0004960000000000005, "x/lr1": 0.0004960000000000005, "x/lr2": 0.0004960000000000005, "_timestamp": 1678067834, "_runtime": 5569, "_step": 50, "Validation": {"_type": "images/separated", "width": 1268, "height": 1920, "format": "jpg", "count": 6, "filenames": ["media/images/Validation_50_95b415bb373b1526ec7b.jpg", "media/images/Validation_50_215461129a439e9d8941.jpg", "media/images/Validation_50_42834517d314a8166315.jpg", "media/images/Validation_50_60fe9449acac950b7536.jpg", "media/images/Validation_50_0d8debff4c2235963100.jpg", "media/images/Validation_50_47e4b210723974a87405.jpg"], "captions": ["val_batch0_labels.jpg", "val_batch0_pred.jpg", "val_batch1_labels.jpg", "val_batch1_pred.jpg", "val_batch2_labels.jpg", "val_batch2_pred.jpg"]}, "Results": {"_type": "images/separated", "width": 2400, "height": 1200, "format": "png", "count": 6, "filenames": ["media/images/Results_50_cb97df7cc81b8e8b7a59.png", "media/images/Results_50_1919cd7ca3699dbfdb9c.png", "media/images/Results_50_b3a66dfbca9e9dc2c9c6.png", "media/images/Results_50_37c6b51fadf8dcd14bcd.png", "media/images/Results_50_6e9f0ed7a2a378a3f5e5.png", "media/images/Results_50_534ee3042242cf12269c.png"], "captions": ["results.png", "confusion_matrix.png", "F1_curve.png", "PR_curve.png", "P_curve.png", "R_curve.png"]}, "_wandb": {"runtime": 5571}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/logs/debug-internal.log b/yolov5_model/wandb/run-20230305_182425-1r190qb3/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..e94e1371c53389b2240891eeadcb79b4d0b10843 --- /dev/null +++ b/yolov5_model/wandb/run-20230305_182425-1r190qb3/logs/debug-internal.log @@ -0,0 +1,2661 @@ +2023-03-05 18:24:27,410 INFO MainThread:158641 [internal.py:wandb_internal():90] W&B internal server running at pid: 158641, started at: 2023-03-05 18:24:27.408968 +2023-03-05 18:24:27,412 INFO WriterThread:158641 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/run-1r190qb3.wandb +2023-03-05 18:24:27,414 DEBUG SenderThread:158641 [sender.py:send():232] send: header +2023-03-05 18:24:27,414 DEBUG SenderThread:158641 [sender.py:send():232] send: run +2023-03-05 18:24:27,424 INFO SenderThread:158641 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/1r190qb3 +2023-03-05 18:24:27,576 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: check_version +2023-03-05 18:24:27,583 INFO SenderThread:158641 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files +2023-03-05 18:24:27,583 INFO SenderThread:158641 [sender.py:_start_run_threads():811] run started: 1r190qb3 with start time 1678062265 +2023-03-05 18:24:27,583 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:24:27,584 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:24:27,585 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: check_version +2023-03-05 18:24:27,630 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: run_start +2023-03-05 18:24:28,644 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:24:30,200 DEBUG HandlerThread:158641 [meta.py:__init__():35] meta init +2023-03-05 18:24:30,200 DEBUG HandlerThread:158641 [meta.py:__init__():49] meta init done +2023-03-05 18:24:30,200 DEBUG HandlerThread:158641 [meta.py:probe():209] probe +2023-03-05 18:24:30,209 DEBUG HandlerThread:158641 [meta.py:_setup_git():199] setup git +2023-03-05 18:24:30,249 DEBUG HandlerThread:158641 [meta.py:_setup_git():206] setup git done +2023-03-05 18:24:30,250 DEBUG HandlerThread:158641 [meta.py:_save_pip():53] save pip +2023-03-05 18:24:30,251 DEBUG HandlerThread:158641 [meta.py:_save_pip():67] save pip done +2023-03-05 18:24:30,252 DEBUG HandlerThread:158641 [meta.py:_save_conda():74] save conda +2023-03-05 18:24:30,646 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/conda-environment.yaml +2023-03-05 18:24:30,646 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/requirements.txt +2023-03-05 18:24:32,648 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:24:34,649 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:24:35,650 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/conda-environment.yaml +2023-03-05 18:24:35,780 DEBUG HandlerThread:158641 [meta.py:_save_conda():84] save conda done +2023-03-05 18:24:35,781 DEBUG HandlerThread:158641 [meta.py:probe():247] probe done +2023-03-05 18:24:35,789 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:24:35,790 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:24:35,840 DEBUG SenderThread:158641 [sender.py:send():232] send: telemetry +2023-03-05 18:24:35,840 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 18:24:35,841 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-03-05 18:24:36,213 INFO Thread-11 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/1g4qlpps-wandb-metadata.json +2023-03-05 18:24:36,652 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-metadata.json +2023-03-05 18:24:40,656 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:24:43,660 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:24:45,666 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:24:46,669 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:24:49,678 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:24:50,841 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:24:50,842 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:24:53,682 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:24:58,687 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/config.yaml +2023-03-05 18:25:00,142 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:25:05,896 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:25:05,896 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:25:09,697 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:25:11,699 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:25:13,701 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:25:15,703 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:25:17,705 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:25:20,944 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:25:20,945 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:25:29,717 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:25:31,966 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:25:35,993 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:25:35,993 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:25:41,884 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:25:43,958 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:25:48,174 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:25:51,131 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:25:51,135 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:26:03,623 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:26:05,624 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:26:06,004 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:26:06,319 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:26:06,319 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:26:17,654 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:26:19,655 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:26:21,460 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:26:21,461 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:26:29,665 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:26:31,667 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:26:36,516 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:26:36,517 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:26:38,140 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:26:43,678 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:26:45,319 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:26:45,321 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:26:45,321 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:26:45,322 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:26:45,322 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:26:45,322 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:26:45,323 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:26:45,323 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:26:45,324 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:26:45,324 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:26:45,428 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 18:26:45,428 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Labels_0_688adbaf4bfe9105092c.jpg with policy now +2023-03-05 18:26:45,432 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 18:26:45,435 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Labels_0_951374f4059853176577.jpg with policy now +2023-03-05 18:26:45,503 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 18:26:45,504 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Mosaics_0_bc6ca511d46aa2a2bac8.jpg with policy now +2023-03-05 18:26:45,513 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 18:26:45,514 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Mosaics_0_17c2e2fc63e75c51efd3.jpg with policy now +2023-03-05 18:26:45,515 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 18:26:45,515 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Mosaics_0_31ae070518e136612999.jpg with policy now +2023-03-05 18:26:45,637 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:26:45,639 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:26:45,639 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:26:45,641 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:26:45,682 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:26:45,682 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:26:45,682 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_17c2e2fc63e75c51efd3.jpg +2023-03-05 18:26:45,682 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_31ae070518e136612999.jpg +2023-03-05 18:26:45,682 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Labels_0_951374f4059853176577.jpg +2023-03-05 18:26:45,682 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Labels_0_688adbaf4bfe9105092c.jpg +2023-03-05 18:26:45,683 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_bc6ca511d46aa2a2bac8.jpg +2023-03-05 18:26:45,683 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media +2023-03-05 18:26:45,683 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images +2023-03-05 18:26:45,805 INFO Thread-12 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/35ypt6se-media/images/Labels_0_688adbaf4bfe9105092c.jpg +2023-03-05 18:26:45,826 INFO Thread-13 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/3dyzedhp-media/images/Labels_0_951374f4059853176577.jpg +2023-03-05 18:26:45,856 INFO Thread-14 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/2ih5uhe2-media/images/Mosaics_0_bc6ca511d46aa2a2bac8.jpg +2023-03-05 18:26:45,890 INFO Thread-16 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/398tci3o-media/images/Mosaics_0_31ae070518e136612999.jpg +2023-03-05 18:26:45,967 INFO Thread-15 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/35x4w700-media/images/Mosaics_0_17c2e2fc63e75c51efd3.jpg +2023-03-05 18:26:47,685 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:26:51,648 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:26:51,649 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:26:57,700 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:27:06,700 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:27:06,701 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:27:09,719 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:27:09,987 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:27:11,722 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:27:21,754 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:27:21,754 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:27:23,740 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:27:25,744 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:27:36,801 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:27:36,802 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:27:37,763 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:27:42,295 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:27:51,883 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:27:51,887 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:27:58,359 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:28:06,982 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:28:06,987 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:28:10,519 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:28:12,521 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:28:15,227 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:28:22,145 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:28:22,146 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:28:22,537 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:28:24,540 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:28:36,562 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:28:37,233 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:28:37,233 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:28:37,580 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:28:37,580 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:28:37,582 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:28:37,582 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:28:37,583 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:28:37,583 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:28:37,584 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:28:37,584 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:28:37,586 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:28:37,586 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:28:37,587 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:28:37,587 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:28:37,587 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:28:37,588 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:28:38,566 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:28:38,566 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:28:40,569 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:28:47,096 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:28:50,587 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:28:52,282 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:28:52,282 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:28:52,590 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:29:04,609 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:29:07,345 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:29:07,345 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:29:16,627 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:29:18,630 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:29:18,975 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:29:22,392 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:29:22,392 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:29:30,649 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:29:37,604 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:29:37,686 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:29:50,477 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:29:51,947 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:29:53,008 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:29:53,017 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:30:04,799 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:30:06,800 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:30:08,132 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:30:08,133 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:30:16,816 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:30:18,819 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:30:23,201 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:30:23,202 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:30:24,007 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:30:30,839 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:30:31,156 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:30:31,158 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:30:31,161 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:30:31,161 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:30:31,163 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:30:31,163 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:30:31,164 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:30:31,164 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:30:31,165 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:30:31,165 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:30:31,166 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:30:31,166 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:30:31,167 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:30:31,168 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:30:31,841 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:30:32,843 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:30:34,846 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:30:38,252 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:30:38,252 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:30:44,861 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:30:53,306 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:30:53,307 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:30:55,813 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:30:56,879 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:30:58,881 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:31:08,355 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:31:08,356 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:31:10,902 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:31:22,921 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:31:23,404 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:31:23,405 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:31:24,924 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:31:27,640 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:31:38,459 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:31:38,467 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:31:40,198 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:31:43,281 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:31:53,589 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:31:53,676 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:31:56,706 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:31:58,718 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:32:00,630 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:32:08,732 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:32:08,754 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:32:08,755 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:32:10,735 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:32:22,755 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:32:23,341 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:32:23,342 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:32:23,344 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:32:23,344 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:32:23,345 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:32:23,345 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:32:23,346 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:32:23,346 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:32:23,347 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:32:23,347 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:32:23,348 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:32:23,348 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:32:23,348 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:32:23,349 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:32:23,757 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:32:23,852 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:32:23,853 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:32:24,759 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:32:26,762 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:32:32,485 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:32:36,777 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:32:38,901 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:32:38,902 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:32:48,796 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:32:50,799 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:32:53,948 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:32:53,948 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:33:02,819 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:33:04,287 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:33:08,994 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:33:08,994 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:33:14,838 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:33:16,841 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:33:24,045 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:33:24,045 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:33:29,181 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:33:31,354 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:33:33,440 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:33:35,447 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:33:37,403 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:33:39,098 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:33:39,103 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:33:47,786 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:33:49,754 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:33:54,244 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:33:54,270 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:34:01,888 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:34:03,891 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:34:09,347 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:34:09,348 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:34:09,670 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:34:15,690 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:34:15,691 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:34:15,692 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:34:15,692 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:34:15,693 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:34:15,693 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:34:15,694 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:34:15,694 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:34:15,695 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:34:15,695 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:34:15,696 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:34:15,696 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:34:15,697 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:34:15,697 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:34:15,913 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:34:15,914 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:34:17,916 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:34:19,919 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:34:24,403 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:34:24,404 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:34:27,931 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:34:29,934 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:34:39,486 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:34:39,487 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:34:41,576 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:34:41,954 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:34:43,957 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:34:54,532 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:34:54,533 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:34:55,976 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:35:07,995 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:35:09,580 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:35:09,580 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:35:09,999 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:35:13,460 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:35:21,478 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:35:23,638 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:35:24,685 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:35:24,688 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:35:39,979 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:35:39,984 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:35:42,134 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:35:44,145 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:35:48,018 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:35:55,185 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:35:55,185 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:35:56,427 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:36:08,402 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:36:08,404 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:36:08,405 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:36:08,405 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:36:08,406 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:36:08,406 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:36:08,407 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:36:08,407 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:36:08,408 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:36:08,408 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:36:08,410 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:36:08,410 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:36:08,411 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:36:08,412 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:36:08,446 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:36:08,446 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:36:10,247 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:36:10,248 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:36:10,449 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:36:12,452 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:36:19,814 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:36:22,468 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:36:25,300 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:36:25,301 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:36:34,487 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:36:36,490 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:36:40,347 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:36:40,347 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:36:48,509 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:36:51,609 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:36:55,395 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:36:55,395 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:37:00,530 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:37:02,534 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:37:10,442 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:37:10,442 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:37:14,554 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:37:16,557 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:37:24,534 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:37:25,495 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:37:25,495 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:37:32,720 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:37:40,586 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:37:40,630 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:37:48,883 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:37:54,016 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:37:54,017 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:37:54,019 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:37:54,019 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:37:54,020 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:37:54,020 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:37:54,021 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:37:54,021 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:37:54,022 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:37:54,022 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:37:54,023 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:37:54,023 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:37:54,023 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:37:54,024 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:37:54,892 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:37:54,893 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:37:55,880 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:37:55,880 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:37:56,784 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:37:56,896 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:37:58,899 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:38:06,910 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:38:08,913 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:38:10,946 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:38:10,946 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:38:12,919 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:38:20,932 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:38:24,939 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:38:25,992 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:38:25,992 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:38:28,663 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:38:34,954 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:38:38,960 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:38:41,035 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:38:41,036 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:38:46,971 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:38:48,976 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:38:52,981 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:38:56,089 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:38:56,089 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:39:00,525 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:39:00,994 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:39:05,000 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:39:11,135 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:39:11,135 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:39:13,014 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:39:15,073 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:39:25,400 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:39:26,237 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:39:26,245 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:39:33,290 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:39:35,489 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:39:37,620 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:39:38,355 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:39:38,357 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:39:38,359 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:39:38,359 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:39:38,360 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:39:38,360 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:39:38,361 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:39:38,362 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:39:38,362 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:39:38,363 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:39:38,364 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:39:38,364 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:39:38,364 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:39:38,365 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:39:38,627 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:39:39,634 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:39:41,558 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:39:41,563 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:39:41,934 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:39:48,021 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:39:50,024 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:39:56,933 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:39:56,935 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:40:02,045 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:40:05,585 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:40:11,993 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:40:11,993 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:40:16,067 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:40:27,040 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:40:27,041 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:40:28,087 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:40:30,090 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:40:37,421 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:40:42,096 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:40:42,098 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:40:42,109 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:40:56,132 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:40:57,152 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:40:57,152 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:41:08,150 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:09,337 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:41:10,153 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:12,198 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:41:12,198 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:41:25,538 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:27,287 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:41:27,288 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:41:27,637 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:29,977 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:32,169 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:33,170 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:41:33,172 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:41:33,173 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:41:33,173 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:41:33,175 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:41:33,175 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:41:33,175 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:41:33,177 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:41:33,177 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:41:33,178 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:41:33,178 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:41:33,179 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:41:33,179 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:41:33,179 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:41:33,180 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:41:34,179 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:36,188 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:38,436 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:42,675 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:41:42,675 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:41:43,445 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:41:44,450 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:54,466 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:56,472 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:41:57,746 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:41:57,748 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:42:08,496 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:42:10,498 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:42:12,802 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:42:12,802 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:42:15,288 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:42:22,517 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:42:24,520 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:42:27,854 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:42:27,854 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:42:34,536 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:42:36,539 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:42:42,903 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:42:42,903 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:42:47,158 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:42:48,560 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:42:50,563 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:42:57,952 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:42:57,952 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:43:00,581 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:43:02,584 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:43:13,172 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:43:13,190 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:43:19,501 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:43:20,804 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:43:22,660 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:43:22,664 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:43:22,666 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:43:22,666 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:43:22,667 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:43:22,667 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:43:22,668 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:43:22,668 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:43:22,669 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:43:22,670 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:43:22,671 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:43:22,671 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:43:22,671 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:43:22,672 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:43:22,811 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:43:22,811 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:43:24,907 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:43:28,480 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:43:28,481 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:43:28,922 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:43:32,967 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:43:35,032 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:43:43,710 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:43:43,711 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:43:49,136 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:43:52,025 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:43:58,785 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:43:58,785 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:44:01,154 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:44:03,161 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:44:13,836 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:44:13,837 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:44:15,181 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:44:23,856 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:44:27,201 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:44:28,882 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:44:28,883 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:44:29,205 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:44:41,224 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:44:43,228 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:44:43,963 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:44:43,963 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:44:53,246 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:44:55,249 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:44:55,757 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:44:59,008 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:44:59,009 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:45:07,341 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:45:13,447 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:45:14,058 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:45:14,059 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:45:17,464 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:45:19,648 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:45:20,364 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:45:20,366 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:45:20,367 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:45:20,370 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:45:20,493 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:45:21,495 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:45:23,501 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:45:25,517 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:45:27,564 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:45:29,983 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:45:31,045 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:45:31,123 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:45:41,038 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:45:46,235 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:45:46,235 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:45:53,056 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:45:55,060 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:46:01,296 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:46:01,297 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:46:01,896 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:46:07,079 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:46:16,357 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:46:16,357 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:46:19,102 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:46:21,107 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:46:31,403 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:46:31,403 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:46:33,214 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:46:33,820 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:46:35,256 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:46:46,481 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:46:46,490 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:46:49,466 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:46:51,592 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:01,717 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:47:01,816 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:47:06,137 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:06,614 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:47:08,512 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:09,531 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:09,867 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:47:09,868 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:47:09,870 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:47:09,870 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:47:09,997 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:47:09,998 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:47:10,039 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:47:10,039 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:47:10,060 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:47:10,060 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:47:10,073 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:47:10,073 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:47:10,073 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:47:10,077 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:47:10,537 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:47:12,555 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:14,665 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:17,107 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:47:17,109 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:47:19,138 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:21,148 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:23,231 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:25,236 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:27,359 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:32,228 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:47:32,229 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:47:40,241 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:47:41,411 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:47:47,318 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:47:47,319 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:47:53,430 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:48:02,372 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:48:02,372 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:48:05,449 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:48:07,452 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:48:12,173 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:48:17,423 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:48:17,423 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:48:19,472 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:48:21,475 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:48:32,475 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:48:32,476 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:48:33,494 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:48:44,125 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:48:44,512 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:48:46,517 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:48:47,522 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:48:47,522 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:49:02,582 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:49:02,585 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:49:03,238 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:49:04,881 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:49:04,882 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:49:04,882 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:49:04,884 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:49:05,244 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:49:05,244 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:49:07,248 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:49:17,711 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:49:17,718 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:49:17,922 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:49:27,779 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:49:29,926 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:49:31,931 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:49:32,842 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:49:32,854 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:49:34,060 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:49:42,008 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:49:48,135 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:49:48,135 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:49:51,587 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:49:54,026 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:50:03,202 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:50:03,203 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:50:06,045 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:50:08,049 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:50:18,250 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:50:18,250 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:50:20,068 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:50:22,071 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:50:23,541 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:50:33,294 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:50:33,294 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:50:34,090 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:50:46,109 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:50:48,113 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:50:48,339 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:50:48,339 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:50:55,507 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:50:59,505 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:50:59,506 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:50:59,507 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:50:59,508 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:51:00,133 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:51:00,134 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:51:02,137 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:51:03,391 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:51:03,392 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:51:17,922 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:51:18,500 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:51:18,501 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:51:19,926 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:51:22,028 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:51:26,216 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:51:29,020 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:51:33,652 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:51:33,667 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:51:34,459 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:51:36,486 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:51:46,503 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:51:48,506 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:51:48,769 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:51:48,770 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:52:00,525 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:52:01,182 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:52:03,826 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:52:03,827 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:52:14,550 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:52:18,875 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:52:18,876 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:52:26,572 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:52:28,576 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:52:33,129 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:52:33,940 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:52:33,940 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:52:40,596 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:52:46,607 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:52:47,693 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:52:47,694 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:52:47,695 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:52:47,695 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:52:47,696 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:52:47,696 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:52:47,697 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:52:47,697 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:52:47,698 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:52:47,698 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:52:47,699 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:52:47,699 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:52:47,699 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:52:47,700 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:52:48,611 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:52:48,611 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:52:48,987 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:52:48,987 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:52:50,614 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:52:52,618 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:00,631 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:02,662 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:04,066 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:53:04,069 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:53:06,216 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:53:07,302 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:13,354 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:19,148 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:53:19,159 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:53:19,432 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:21,527 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:23,536 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:27,637 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:34,292 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:53:34,292 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:53:35,641 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:39,541 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:53:39,647 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:41,651 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:47,660 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:49,363 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:53:49,363 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:53:49,663 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:51,666 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:53,671 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:53:55,679 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:01,697 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:03,704 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:04,408 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:54:04,408 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:54:05,707 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:07,710 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:15,299 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:54:15,723 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:19,456 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:54:19,456 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:54:19,730 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:21,733 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:27,743 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:29,746 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:31,750 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:32,465 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:54:32,465 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:54:32,467 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:54:32,467 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:54:32,468 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:54:32,468 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:54:32,469 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:54:32,469 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:54:32,470 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:54:32,470 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:54:32,471 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:54:32,471 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:54:32,471 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:54:32,472 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:54:32,753 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:54:33,754 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:34,504 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:54:34,504 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:54:35,757 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:41,767 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:45,772 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:47,129 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:54:49,597 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:54:49,598 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:54:53,783 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:55,786 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:58,064 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:54:59,141 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:04,963 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:55:04,971 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:55:16,218 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:20,160 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:55:20,161 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:55:20,264 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:21,383 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:55:22,300 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:30,386 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:32,388 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:34,391 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:35,264 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:55:35,264 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:55:44,407 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:46,410 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:48,413 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:50,331 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:55:50,332 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:55:56,427 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:58,430 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:55:58,879 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:56:00,433 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:02,435 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:05,380 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:56:05,381 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:56:10,447 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:12,450 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:14,453 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:20,425 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:56:20,425 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:56:24,468 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:27,969 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:56:27,969 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:56:27,971 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:56:27,972 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:56:27,973 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:56:27,973 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:56:27,974 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:56:27,974 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:56:27,974 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:56:27,975 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:56:27,975 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:56:27,976 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:56:27,976 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:56:27,976 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:56:28,478 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:56:28,478 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:30,481 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:30,732 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:56:35,477 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:56:35,477 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:56:36,490 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:38,493 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:40,496 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:50,513 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:56:50,522 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:56:50,522 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:56:54,676 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:57:03,466 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:57:05,586 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:57:05,587 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:57:08,335 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:57:10,282 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:57:12,315 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:57:20,720 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:57:20,724 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:57:26,448 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:57:28,451 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:57:35,842 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:57:35,842 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:57:36,109 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:57:38,467 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:57:40,471 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:57:42,474 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:57:50,489 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:57:50,898 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:57:50,898 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:57:52,492 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:57:54,495 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:58:04,511 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:58:05,956 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:58:05,956 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:58:07,907 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:58:08,517 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:58:18,533 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:58:19,066 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 18:58:19,067 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 18:58:19,068 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 18:58:19,069 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 18:58:19,536 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 18:58:20,537 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:58:21,004 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:58:21,004 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:58:30,553 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:58:32,557 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:58:36,052 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:58:36,053 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:58:39,762 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:58:44,578 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:58:51,112 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:58:51,112 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:59:03,086 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:59:05,123 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:59:06,629 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:59:06,635 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:59:07,212 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:59:13,536 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:59:17,545 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:59:19,557 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:59:21,962 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:59:21,962 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:59:31,765 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:59:33,768 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:59:37,115 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:59:37,115 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:59:45,491 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 18:59:45,786 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:59:52,188 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 18:59:52,189 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 18:59:57,808 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 18:59:59,811 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:00:07,234 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:00:07,235 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:00:11,829 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:00:12,600 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:00:12,601 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:00:12,602 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:00:12,603 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:00:12,832 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:00:13,833 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:00:15,836 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:00:17,266 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:00:22,289 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:00:22,290 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:00:23,849 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:00:25,852 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:00:37,339 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:00:37,339 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:00:37,870 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:00:39,873 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:00:49,193 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:00:50,018 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:00:52,162 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:00:52,420 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:00:52,421 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:00:54,161 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:00:58,585 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:01:00,590 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:01:07,604 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:01:07,607 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:01:10,741 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:01:12,754 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:01:22,765 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:01:22,767 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:01:23,148 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:01:23,993 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:01:25,996 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:01:37,840 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:01:37,841 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:01:38,014 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:01:50,031 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:01:52,034 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:01:52,890 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:01:52,890 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:01:54,946 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:02:04,053 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:02:05,101 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:02:05,102 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:02:05,102 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:02:05,104 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:02:06,056 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:02:06,056 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:02:07,952 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:02:07,953 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:02:08,059 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:02:18,075 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:02:23,001 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:02:23,001 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:02:26,768 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:02:30,094 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:02:32,097 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:02:38,046 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:02:38,047 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:02:44,133 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:02:53,122 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:02:53,126 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:03:00,334 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:03:05,587 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:03:08,838 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:03:08,839 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:03:09,596 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:03:18,905 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:03:23,928 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:03:23,929 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:03:30,926 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:03:33,033 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:03:39,001 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:03:39,002 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:03:42,948 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:03:44,951 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:03:54,051 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:03:54,052 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:03:56,973 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:03:57,557 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:03:57,558 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:03:57,559 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:03:57,560 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:03:57,561 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:03:57,561 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:03:57,562 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:03:57,562 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:03:57,564 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:03:57,564 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:03:57,565 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:03:57,565 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:03:57,565 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:03:57,567 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:03:57,975 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:03:58,977 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:04:00,980 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:04:04,851 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:04:08,995 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:04:09,099 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:04:09,099 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:04:10,998 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:04:23,019 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:04:24,151 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:04:24,151 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:04:35,038 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:04:36,636 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:04:37,041 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:04:39,198 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:04:39,199 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:04:54,299 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:04:54,321 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:04:55,237 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:04:57,250 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:05:09,433 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:05:09,479 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:05:09,507 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:05:09,799 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:05:11,502 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:05:23,546 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:05:24,622 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:05:24,623 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:05:25,549 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:05:35,565 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:05:37,568 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:05:39,683 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:05:39,683 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:05:41,580 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:05:49,586 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:05:50,012 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:05:50,014 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:05:50,014 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:05:50,016 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:05:50,589 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:05:51,591 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:05:53,595 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:05:54,736 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:05:54,736 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:06:03,610 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:06:09,782 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:06:09,783 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:06:13,415 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:06:15,629 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:06:17,632 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:06:24,867 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:06:24,868 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:06:29,650 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:06:39,914 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:06:39,914 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:06:41,670 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:06:43,864 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:06:45,750 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:06:55,024 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:06:55,027 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:07:02,453 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:07:10,233 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:07:10,233 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:07:16,573 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:07:18,354 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:07:18,576 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:07:25,307 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:07:25,308 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:07:28,592 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:07:30,595 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:07:36,269 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:07:36,271 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:07:36,272 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:07:36,272 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:07:36,273 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:07:36,273 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:07:36,274 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:07:36,274 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:07:36,275 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:07:36,275 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:07:36,276 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:07:36,276 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:07:36,277 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:07:36,277 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:07:36,608 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:07:36,608 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:07:38,612 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:07:40,366 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:07:40,366 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:07:40,615 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:07:50,631 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:07:50,738 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:07:54,637 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:07:55,449 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:07:55,449 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:08:02,649 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:06,656 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:08,659 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:10,495 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:08:10,495 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:08:16,672 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:20,678 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:22,540 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:08:25,549 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:08:25,549 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:08:28,690 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:30,693 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:32,697 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:34,700 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:40,683 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:08:40,690 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:08:46,107 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:48,193 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:50,651 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:52,651 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:08:55,848 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:08:55,855 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:08:56,567 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:09:00,973 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:04,980 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:10,992 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:09:10,993 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:09:15,000 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:19,005 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:19,628 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:09:19,629 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:09:19,630 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:09:19,632 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:09:20,008 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:09:21,010 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:23,013 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:26,074 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:09:26,074 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:09:27,020 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:28,633 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:09:33,029 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:41,043 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:41,126 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:09:41,126 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:09:45,049 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:47,052 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:53,061 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:55,064 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:09:56,200 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:09:56,200 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:09:59,071 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:10:00,440 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:10:07,084 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:10:11,091 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:10:11,253 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:10:11,254 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:10:13,094 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:10:21,109 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:10:25,116 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:10:26,310 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:10:26,311 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:10:32,215 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:10:33,129 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:10:35,180 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:10:41,363 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:10:41,388 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:10:43,309 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:10:53,422 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:10:55,432 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:10:56,904 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:10:56,905 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:10:59,440 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:05,579 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:11:07,459 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:11,464 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:11,965 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:11:11,966 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:11:12,071 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:11:12,072 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:11:12,073 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:11:12,074 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:11:12,075 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:11:12,075 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:11:12,076 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:11:12,076 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:11:12,077 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:11:12,077 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:11:12,078 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:11:12,078 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:11:12,078 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:11:12,079 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:11:12,467 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:11:13,468 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:15,472 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:19,481 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:25,492 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:27,028 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:11:27,029 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:11:33,505 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:37,442 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:11:39,517 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:42,076 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:11:42,077 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:11:45,527 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:47,531 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:51,539 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:11:57,123 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:11:57,123 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:11:59,552 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:05,562 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:09,249 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:12:11,572 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:12,169 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:12:12,169 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:12:13,575 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:17,582 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:25,595 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:27,218 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:12:27,218 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:12:31,722 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:38,098 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:40,126 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:42,040 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:12:42,272 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:12:42,273 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:12:46,171 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:48,189 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:54,353 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:56,397 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:12:57,420 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:12:57,421 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:13:02,475 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:13:03,601 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:13:03,602 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:13:03,602 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:13:03,604 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:13:04,479 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:13:04,480 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:13:06,483 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:13:12,631 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:13:12,631 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:13:14,496 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:13:14,708 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:13:16,500 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:13:27,690 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:13:27,690 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:13:28,519 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:13:40,537 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:13:42,541 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:13:42,740 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:13:42,740 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:13:46,489 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:13:54,562 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:13:56,565 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:13:57,795 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:13:57,795 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:14:06,581 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:14:08,584 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:14:12,842 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:14:12,843 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:14:18,318 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:14:20,603 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:14:22,607 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:14:27,978 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:14:27,991 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:14:38,516 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:14:40,519 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:14:42,529 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:14:43,258 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:14:43,261 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:14:52,653 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:14:52,708 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:14:54,655 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:14:55,734 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:14:55,735 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:14:55,735 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:14:55,736 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:14:56,667 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:14:56,669 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:14:58,423 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:14:58,425 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:14:58,676 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:15:00,679 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:15:06,689 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:15:08,692 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:15:13,523 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:15:13,523 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:15:18,709 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:15:20,716 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:15:24,719 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:15:28,585 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:15:28,585 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:15:32,741 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:15:34,744 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:15:43,633 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:15:43,633 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:15:46,767 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:15:48,770 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:15:56,556 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:15:58,684 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:15:58,684 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:15:58,791 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:16:00,794 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:16:12,813 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:16:13,729 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:16:13,730 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:16:14,816 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:16:24,837 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:16:26,914 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:16:28,726 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:16:28,793 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:16:28,793 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:16:44,095 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:16:44,103 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:16:45,659 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:16:47,530 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:16:47,531 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:16:47,532 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:16:47,533 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:16:47,861 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:16:47,861 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:16:49,881 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:16:52,034 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:16:54,119 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:16:59,235 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:16:59,236 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:17:00,180 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:17:01,186 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:17:12,199 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:17:14,202 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:17:14,294 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:17:14,295 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:17:25,221 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:17:27,224 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:17:29,341 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:17:29,341 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:17:33,001 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:17:39,244 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:17:44,392 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:17:44,392 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:17:51,276 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:17:53,279 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:17:59,440 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:17:59,440 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:18:04,856 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:18:05,316 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:18:14,489 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:18:14,490 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:18:17,336 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:18:19,339 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:18:29,548 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:18:29,551 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:18:38,076 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:18:38,081 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:18:40,097 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:18:41,775 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:18:41,776 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:18:41,777 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:18:41,778 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:18:41,778 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:18:41,779 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:18:41,780 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:18:41,780 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:18:41,781 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:18:41,781 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:18:41,782 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:18:41,782 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:18:41,782 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:18:41,783 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:18:42,299 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:18:42,301 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:18:44,327 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:18:45,008 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:18:45,009 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:18:46,449 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:18:47,450 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:18:54,462 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:18:56,464 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:19:01,470 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:19:01,470 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:19:07,488 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:19:10,397 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:19:16,536 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:19:16,537 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:19:19,507 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:19:21,510 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:19:31,597 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:19:31,597 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:19:33,531 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:19:42,200 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:19:45,549 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:19:46,646 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:19:46,646 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:19:47,552 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:19:59,575 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:20:01,578 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:20:01,790 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:20:01,790 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:20:13,597 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:20:14,091 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:20:16,846 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:20:16,846 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:20:31,892 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:20:31,897 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:20:32,326 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:20:33,623 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:20:33,624 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:20:33,626 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:20:33,627 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:20:33,628 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:20:33,628 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:20:33,629 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:20:33,629 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:20:33,630 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:20:33,630 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:20:33,631 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:20:33,631 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:20:33,631 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:20:33,632 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:20:34,345 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:20:34,346 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:20:36,593 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:20:40,796 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:20:42,826 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:20:46,931 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:20:47,112 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:20:47,112 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:20:47,222 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:20:48,979 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:21:01,009 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:21:02,174 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:21:02,174 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:21:03,012 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:21:15,031 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:21:17,035 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:21:17,230 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:21:17,230 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:21:19,061 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:21:29,054 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:21:32,275 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:21:32,275 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:21:41,076 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:21:43,079 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:21:47,332 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:21:47,332 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:21:50,905 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:21:55,098 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:02,384 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:22:02,384 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:22:07,119 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:09,123 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:14,679 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:22:14,680 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:22:14,681 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:22:14,682 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:22:15,133 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:22:15,133 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:17,423 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:17,439 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:22:17,440 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:22:18,483 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:20,505 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:22,509 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:23,356 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:22:32,540 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:22:32,548 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:22:32,839 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:34,880 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:38,879 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:47,851 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:22:47,853 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:22:48,948 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:50,950 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:52,953 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:22:56,876 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:23:00,966 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:02,929 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:23:02,929 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:23:02,969 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:06,975 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:14,987 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:16,990 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:17,995 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:23:17,995 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:23:18,994 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:20,997 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:28,667 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:23:29,011 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:33,017 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:33,045 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:23:33,046 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:23:41,033 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:43,036 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:47,041 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:48,099 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:23:48,099 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:23:55,053 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:57,056 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:23:59,059 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:00,221 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:24:00,223 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:24:00,224 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:24:00,224 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:24:00,225 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:24:00,225 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:24:00,226 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:24:00,226 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:24:00,227 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:24:00,227 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:24:00,228 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:24:00,228 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:24:00,228 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:24:00,229 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:24:00,581 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:24:01,063 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:24:01,064 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:03,068 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:03,148 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:24:03,148 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:24:07,076 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:09,079 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:13,086 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:18,323 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:24:18,331 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:24:27,575 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:33,494 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:24:33,495 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:24:33,749 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:34,139 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:24:35,752 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:43,996 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:45,995 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:47,998 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:24:48,547 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:24:48,547 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:24:56,011 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:00,017 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:03,646 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:25:03,646 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:25:06,080 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:25:08,030 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:10,033 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:12,036 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:14,039 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:18,691 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:25:18,692 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:25:22,052 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:24,055 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:26,058 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:33,738 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:25:33,738 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:25:34,071 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:36,074 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:37,897 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:25:38,077 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:40,083 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:48,096 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:48,786 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:25:48,786 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:25:50,099 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:52,103 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:52,669 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:25:52,669 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:25:52,672 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:25:52,672 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:25:52,673 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:25:52,673 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:25:52,674 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:25:52,674 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:25:52,675 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:25:52,675 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:25:52,676 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:25:52,676 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:25:52,676 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:25:52,677 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:25:53,105 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:25:54,106 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:25:56,110 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:26:02,122 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:26:03,831 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:26:03,831 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:26:06,129 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:26:09,695 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:26:18,888 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:26:18,948 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:26:20,614 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:26:22,633 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:26:34,031 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:26:34,058 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:26:35,036 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:26:37,246 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:26:42,605 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:26:46,368 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:26:48,371 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:26:49,147 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:26:49,147 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:26:50,374 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:00,390 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:02,393 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:04,201 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:27:04,201 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:27:04,397 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:12,409 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:14,413 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:14,459 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:27:16,416 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:18,419 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:19,253 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:27:19,253 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:27:26,433 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:28,436 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:30,439 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:34,298 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:27:34,298 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:27:40,455 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:42,458 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:42,473 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:27:42,474 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:27:42,474 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:27:42,475 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:27:43,466 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:27:44,466 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:46,267 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:27:49,347 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:27:49,347 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:27:52,479 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:54,483 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:27:56,486 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:28:04,460 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:28:04,460 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:28:06,593 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:28:08,989 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:28:13,439 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:28:19,253 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:28:19,566 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:28:19,566 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:28:26,854 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:28:34,772 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:28:34,776 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:28:39,007 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:28:41,010 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:28:49,997 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:28:49,997 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:28:51,025 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:28:51,795 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:28:53,029 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:28:55,032 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:05,049 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:05,054 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:29:05,055 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:29:07,052 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:09,055 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:19,072 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:20,104 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:29:20,104 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:29:21,076 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:23,593 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:29:31,093 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:33,096 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:34,977 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:29:34,978 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:29:34,979 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:29:34,980 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:29:35,101 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:29:35,101 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:35,175 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:29:35,175 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:29:37,104 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:45,118 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:47,121 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:50,232 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:29:50,232 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:29:55,414 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:29:57,140 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:29:59,143 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:30:01,160 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:30:05,445 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:30:05,447 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:30:17,760 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:30:19,934 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:30:20,736 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:30:20,736 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:30:29,477 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:30:34,230 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:30:35,845 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:30:35,846 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:30:36,234 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:30:46,250 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:30:48,253 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:30:50,901 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:30:50,901 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:30:58,269 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:31:00,273 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:31:01,316 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:31:02,276 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:31:05,953 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:31:05,954 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:31:12,292 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:31:14,295 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:31:16,297 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:31:20,999 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:31:21,000 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:31:25,627 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:31:25,628 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:31:25,629 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:31:25,630 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:31:26,313 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:31:26,313 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:31:28,316 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:31:33,108 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:31:36,047 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:31:36,048 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:31:38,338 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:31:40,341 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:31:51,100 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:31:51,101 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:31:52,357 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:32:05,557 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:32:06,196 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:32:06,197 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:32:09,713 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:32:11,729 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:32:21,390 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:32:21,402 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:32:24,006 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:32:26,013 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:32:36,547 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:32:36,549 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:32:37,946 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:32:38,104 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:32:50,123 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:32:51,626 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:32:51,626 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:32:52,126 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:33:04,149 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:33:06,152 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:33:06,671 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:33:06,671 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:33:09,807 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:33:16,167 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:33:17,546 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:33:17,548 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:33:17,549 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:33:17,549 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:33:17,550 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:33:17,550 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:33:17,551 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:33:17,552 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:33:17,552 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:33:17,553 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:33:17,554 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:33:17,554 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:33:17,554 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:33:17,555 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:33:18,172 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:33:18,172 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:33:20,175 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:33:21,720 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:33:21,721 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:33:30,192 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:33:32,195 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:33:36,775 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:33:36,776 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:33:41,956 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:33:44,216 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:33:51,827 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:33:51,827 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:34:03,289 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:34:05,289 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:34:06,872 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:34:06,873 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:34:14,709 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:34:16,518 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:34:18,520 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:34:21,995 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:34:22,000 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:34:30,549 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:34:32,552 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:34:37,100 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:34:37,101 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:34:42,568 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:34:44,571 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:34:46,578 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:34:52,150 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:34:52,151 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:34:56,589 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:34:58,593 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:35:07,228 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:35:07,229 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:35:08,609 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:35:10,560 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:35:10,562 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:35:10,563 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:35:10,563 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:35:10,564 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:35:10,565 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:35:10,566 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:35:10,566 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:35:10,567 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:35:10,567 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:35:10,568 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:35:10,568 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:35:10,569 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:35:10,570 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:35:10,613 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:35:10,613 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:35:12,616 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:35:14,620 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:35:18,392 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:35:22,274 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:35:22,275 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:35:22,633 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:35:24,636 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:35:36,656 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:35:37,322 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:35:37,322 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:35:48,676 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:35:50,414 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:35:50,786 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:35:52,372 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:35:52,372 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:36:07,497 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:36:07,506 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:36:11,475 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:36:13,519 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:36:22,631 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:36:22,633 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:36:23,080 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:36:25,552 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:36:37,571 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:36:37,709 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:36:37,709 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:36:39,575 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:36:51,597 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:36:52,757 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:36:52,757 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:36:54,867 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:36:57,607 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:36:58,544 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:36:58,545 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:36:58,547 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:36:58,547 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:36:58,548 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:36:58,548 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:36:58,549 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:36:58,549 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:36:58,550 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:36:58,550 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:36:58,551 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:36:58,551 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:36:58,551 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:36:58,552 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:36:58,609 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:36:59,610 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:01,614 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:03,617 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:07,804 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:37:07,805 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:37:11,629 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:13,632 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:17,638 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:22,854 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:37:22,854 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:37:25,651 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:26,682 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:37:29,658 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:31,661 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:37,670 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:37,905 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:37:37,906 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:37:39,673 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:43,679 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:52,971 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:37:52,973 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:37:57,193 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:37:59,230 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:38:01,275 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:03,303 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:08,284 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:38:08,286 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:38:11,488 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:17,473 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:23,370 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:38:23,370 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:38:25,485 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:29,492 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:31,882 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:38:37,505 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:38,446 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:38:38,446 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:38:39,508 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:43,514 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:43,575 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:38:43,576 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:38:43,577 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:38:43,578 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:38:44,518 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:38:45,520 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:51,534 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:53,498 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:38:53,498 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:38:53,537 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:55,540 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:38:57,544 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:39:03,731 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:39:05,556 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:39:08,547 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:39:08,547 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:39:09,563 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:39:17,576 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:39:19,579 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:39:23,586 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:39:23,597 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:39:23,598 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:39:31,599 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:39:35,573 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:39:35,607 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:39:38,648 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:39:38,648 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:39:50,007 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:39:52,060 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:39:53,938 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:39:53,946 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:39:54,110 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:06,316 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:08,325 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:08,801 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:40:10,330 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:10,498 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:40:10,498 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:40:18,399 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:20,402 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:24,409 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:25,579 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:40:25,580 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:40:32,422 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:36,428 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:37,469 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:40:37,470 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:40:37,471 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:40:37,472 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:40:38,432 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:40:38,432 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:40,435 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:40,641 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:40:40,641 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:40:40,755 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:40:44,442 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:46,445 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:50,451 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:40:55,703 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:40:55,704 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:40:58,465 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:41:00,468 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:41:04,474 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:41:10,764 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:41:10,764 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:41:12,487 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:41:12,541 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:41:16,493 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:41:24,506 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:41:25,822 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:41:25,822 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:41:26,509 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:41:30,515 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:41:38,526 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:41:40,876 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:41:40,876 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:41:44,743 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:41:50,952 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:41:56,490 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:41:56,503 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:42:00,442 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:42:04,594 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:42:11,941 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:42:11,942 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:42:12,581 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:42:18,591 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:42:18,799 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:42:24,602 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:42:26,605 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:42:26,613 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:42:26,615 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:42:26,615 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:42:26,616 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:42:27,023 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:42:27,024 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:42:27,607 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:42:28,609 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:42:38,630 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:42:40,633 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:42:42,071 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:42:42,072 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:42:50,632 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:42:52,665 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:42:57,119 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:42:57,120 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:43:04,686 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:43:06,689 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:43:12,167 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:43:12,167 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:43:18,709 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:43:22,452 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:43:27,221 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:43:27,222 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:43:30,730 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:43:32,733 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:43:42,289 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:43:42,292 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:43:51,634 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:43:53,720 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:43:56,281 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:43:57,747 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:43:57,751 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:44:07,303 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:44:09,306 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:44:13,105 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:44:13,106 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:44:19,322 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:44:20,693 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:44:20,694 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:44:20,695 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:44:20,696 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:44:20,697 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:44:20,697 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:44:20,698 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:44:20,698 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:44:20,699 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:44:20,699 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:44:20,700 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:44:20,700 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:44:20,700 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:44:20,701 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:44:21,326 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:44:21,326 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:44:23,329 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:44:28,174 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:44:28,174 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:44:28,445 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:44:33,347 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:44:35,350 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:44:43,223 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:44:43,223 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:44:47,371 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:44:58,270 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:44:58,271 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:44:59,387 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:45:00,231 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:45:01,390 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:45:13,344 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:45:13,344 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:45:13,409 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:45:15,412 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:45:25,429 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:45:27,432 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:45:28,391 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:45:28,392 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:45:32,057 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:45:43,794 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:45:43,800 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:45:44,479 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:45:46,602 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:45:49,051 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:45:49,997 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:45:52,008 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:45:59,096 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:45:59,100 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:46:00,181 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:46:05,276 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:46:12,236 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:46:13,960 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:46:13,961 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:46:13,962 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:46:13,962 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:46:13,963 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:46:13,963 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:46:13,965 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:46:13,965 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:46:13,965 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:46:13,966 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:46:13,966 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:46:13,967 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:46:13,967 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:46:13,968 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:46:14,186 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:46:14,187 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:46:14,240 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:46:14,240 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:46:16,244 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:46:18,247 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:46:26,260 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:46:28,263 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:46:29,250 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:46:29,250 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:46:37,097 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:46:38,280 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:46:40,283 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:46:44,295 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:46:44,295 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:46:52,300 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:46:54,302 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:46:59,344 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:46:59,344 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:47:06,321 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:47:09,079 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:47:14,392 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:47:14,392 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:47:18,343 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:47:20,345 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:47:29,439 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:47:29,440 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:47:32,533 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:47:34,703 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:47:41,486 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:47:44,590 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:47:44,593 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:47:53,244 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:47:59,815 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:47:59,817 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:48:05,388 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:48:05,581 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:48:05,581 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:48:05,582 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:48:05,583 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:48:06,390 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:48:07,392 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:48:09,395 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:48:13,724 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:48:14,888 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:48:14,888 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:48:17,409 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:48:19,412 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:48:29,935 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:48:29,935 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:48:31,431 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:48:33,434 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:48:43,450 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:48:44,982 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:48:44,983 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:48:45,454 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:48:45,528 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:48:57,472 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:48:59,475 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:49:00,041 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:49:00,041 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:49:11,496 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:49:13,499 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:49:15,087 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:49:15,088 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:49:17,363 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:49:23,515 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:49:25,518 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:49:30,141 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:49:30,145 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:49:43,359 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:49:45,327 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:49:45,329 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:49:45,363 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:49:51,113 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:49:57,581 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:49:58,200 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:49:58,202 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:49:58,203 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:49:58,204 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:49:58,205 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:49:58,205 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:49:58,206 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:49:58,206 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:49:58,207 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:49:58,207 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:49:58,208 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:49:58,208 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:49:58,209 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:49:58,210 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:49:58,583 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:49:59,585 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:50:00,411 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:50:00,412 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:50:01,588 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:50:09,601 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:50:11,605 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:50:15,571 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:50:15,571 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:50:23,020 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:50:23,627 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:50:25,630 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:50:30,627 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:50:30,628 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:50:37,650 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:50:45,691 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:50:45,691 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:50:49,672 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:50:51,676 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:50:54,832 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:51:00,746 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:51:00,747 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:51:03,695 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:05,698 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:15,714 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:15,792 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:51:15,793 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:51:17,717 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:27,122 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:51:30,845 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:51:30,847 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:51:36,502 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:37,515 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:43,546 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:45,553 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:45,620 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:51:45,621 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:51:45,623 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:51:45,623 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:51:45,624 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:51:45,624 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:51:45,625 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:51:45,625 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:51:45,626 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:51:45,626 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:51:45,627 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:51:45,627 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:51:45,627 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:51:45,628 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:51:46,429 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:51:46,430 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:51:46,554 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:51:47,557 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:49,565 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:51,568 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:57,580 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:59,584 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:51:59,925 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:52:01,538 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:52:01,538 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:52:05,593 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:11,602 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:13,606 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:16,600 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:52:16,600 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:52:17,612 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:23,621 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:25,624 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:27,627 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:31,633 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:31,658 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:52:31,658 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:52:31,776 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:52:37,642 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:39,646 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:43,652 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:45,655 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:46,709 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:52:46,709 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:52:49,661 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:51,664 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:53,667 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:52:57,673 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:01,760 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:53:01,760 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:53:03,626 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:53:03,683 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:05,686 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:09,692 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:11,695 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:16,809 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:53:16,809 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:53:17,704 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:19,710 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:30,461 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:31,564 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:53:31,567 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:53:31,567 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:53:31,568 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:53:31,569 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:53:31,569 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:53:31,570 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:53:31,570 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:53:31,572 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:53:31,572 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:53:31,574 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:53:31,574 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:53:31,574 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:53:31,578 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:53:32,203 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:53:32,204 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:53:32,543 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:53:32,543 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:34,555 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:36,602 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:37,439 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:53:38,601 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:40,664 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:42,780 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:47,302 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:53:47,307 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:53:50,853 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:52,855 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:53:56,862 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:02,498 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:54:02,499 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:54:02,872 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:04,875 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:06,878 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:09,396 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:54:10,885 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:16,894 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:17,550 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:54:17,551 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:54:18,897 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:22,904 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:24,907 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:30,917 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:32,599 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:54:32,600 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:54:32,920 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:36,927 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:41,232 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:54:42,936 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:44,940 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:47,649 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:54:47,649 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:54:50,949 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:56,959 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:54:58,965 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:02,698 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:55:02,698 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:55:02,971 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:09,003 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:11,006 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:13,009 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:13,067 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:55:17,025 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:17,150 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:55:17,153 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:55:17,154 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:55:17,155 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:55:17,157 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:55:17,157 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:55:17,158 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:55:17,158 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:55:17,159 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:55:17,159 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:55:17,160 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:55:17,160 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:55:17,160 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:55:17,161 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:55:18,112 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:55:18,566 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:55:18,566 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:55:19,114 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:21,367 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:28,057 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:31,043 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:33,715 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:55:33,717 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:55:35,058 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:37,082 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:43,095 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:45,122 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:46,646 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:55:48,878 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:55:48,878 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:55:51,132 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:57,142 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:55:59,145 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:03,151 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:03,948 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:56:03,948 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:56:09,160 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:11,163 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:17,171 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:18,479 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:56:18,999 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:56:19,000 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:56:23,202 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:25,205 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:29,212 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:31,215 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:34,049 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:56:34,049 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:56:35,222 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:37,225 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:43,234 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:49,098 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:56:49,098 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:56:49,244 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:50,314 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:56:51,248 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:56:57,258 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:57:03,267 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:57:04,201 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: stop_status +2023-03-05 19:57:04,201 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: stop_status +2023-03-05 19:57:05,011 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:57:05,012 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:57:05,014 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:57:05,014 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:57:05,015 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:57:05,015 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:57:05,016 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:57:05,017 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:57:05,018 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:57:05,018 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:57:05,019 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:57:05,019 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:57:05,019 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:57:05,020 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:57:05,271 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:57:05,271 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:57:07,274 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:57:09,278 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:57:11,281 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:57:14,461 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:57:14,601 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: log_artifact +2023-03-05 19:57:14,601 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: log_artifact +2023-03-05 19:57:15,347 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_95b415bb373b1526ec7b.jpg +2023-03-05 19:57:15,347 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_60fe9449acac950b7536.jpg +2023-03-05 19:57:15,348 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_215461129a439e9d8941.jpg +2023-03-05 19:57:15,348 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_47e4b210723974a87405.jpg +2023-03-05 19:57:15,348 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_0d8debff4c2235963100.jpg +2023-03-05 19:57:15,348 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_42834517d314a8166315.jpg +2023-03-05 19:57:15,348 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images +2023-03-05 19:57:15,966 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: partial_history +2023-03-05 19:57:16,351 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_534ee3042242cf12269c.png +2023-03-05 19:57:16,351 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_b3a66dfbca9e9dc2c9c6.png +2023-03-05 19:57:16,352 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_6e9f0ed7a2a378a3f5e5.png +2023-03-05 19:57:16,352 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_cb97df7cc81b8e8b7a59.png +2023-03-05 19:57:16,352 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png +2023-03-05 19:57:16,352 INFO Thread-7 :158641 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_37c6b51fadf8dcd14bcd.png +2023-03-05 19:57:16,380 INFO Thread-18 :158641 [upload_job.py:push():95] Uploaded file /home/akhot2/.cache/wandb/artifacts/obj/md5/df/700315ac6b89a32bc25024b8f32bf6 +2023-03-05 19:57:17,050 INFO SenderThread:158641 [sender.py:send_request_log_artifact():1001] logged artifact run_1r190qb3_model - {'id': 'QXJ0aWZhY3Q6Mzg5NjQ2MDE3', 'digest': '39feab60625d45d695d7d0fc81854ee8', 'state': 'PENDING', 'aliases': [], 'artifactSequence': {'id': 'QXJ0aWZhY3RDb2xsZWN0aW9uOjU1OTE0MzYz', 'latestArtifact': None}, 'version': 'latest'} +2023-03-05 19:57:17,051 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,085 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Validation_50_95b415bb373b1526ec7b.jpg with policy now +2023-03-05 19:57:17,086 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,086 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Validation_50_215461129a439e9d8941.jpg with policy now +2023-03-05 19:57:17,087 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,087 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Validation_50_42834517d314a8166315.jpg with policy now +2023-03-05 19:57:17,087 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,087 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Validation_50_60fe9449acac950b7536.jpg with policy now +2023-03-05 19:57:17,088 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,088 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Validation_50_0d8debff4c2235963100.jpg with policy now +2023-03-05 19:57:17,088 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,088 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Validation_50_47e4b210723974a87405.jpg with policy now +2023-03-05 19:57:17,241 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,241 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Results_50_cb97df7cc81b8e8b7a59.png with policy now +2023-03-05 19:57:17,241 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,241 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Results_50_1919cd7ca3699dbfdb9c.png with policy now +2023-03-05 19:57:17,242 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,242 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Results_50_b3a66dfbca9e9dc2c9c6.png with policy now +2023-03-05 19:57:17,242 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,242 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Results_50_37c6b51fadf8dcd14bcd.png with policy now +2023-03-05 19:57:17,243 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,243 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Results_50_6e9f0ed7a2a378a3f5e5.png with policy now +2023-03-05 19:57:17,243 DEBUG SenderThread:158641 [sender.py:send():232] send: files +2023-03-05 19:57:17,243 INFO SenderThread:158641 [sender.py:_save_file():946] saving file media/images/Results_50_534ee3042242cf12269c.png with policy now +2023-03-05 19:57:17,243 DEBUG SenderThread:158641 [sender.py:send():232] send: history +2023-03-05 19:57:17,244 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:57:17,283 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:57:17,284 DEBUG SenderThread:158641 [sender.py:send():232] send: telemetry +2023-03-05 19:57:17,284 DEBUG SenderThread:158641 [sender.py:send():232] send: telemetry +2023-03-05 19:57:17,353 INFO Thread-7 :158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:57:17,622 INFO Thread-19 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/1jehiwce-media/images/Validation_50_95b415bb373b1526ec7b.jpg +2023-03-05 19:57:17,648 INFO Thread-23 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/2uxulg5u-media/images/Validation_50_0d8debff4c2235963100.jpg +2023-03-05 19:57:17,664 INFO Thread-25 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/1ib1p9ic-media/images/Results_50_cb97df7cc81b8e8b7a59.png +2023-03-05 19:57:17,684 INFO Thread-20 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/1oaloypu-media/images/Validation_50_215461129a439e9d8941.jpg +2023-03-05 19:57:17,696 INFO Thread-26 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/2p9089op-media/images/Results_50_1919cd7ca3699dbfdb9c.png +2023-03-05 19:57:17,697 INFO Thread-21 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/18sxnp8g-media/images/Validation_50_42834517d314a8166315.jpg +2023-03-05 19:57:17,713 INFO Thread-22 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/8ndq0264-media/images/Validation_50_60fe9449acac950b7536.jpg +2023-03-05 19:57:17,714 INFO Thread-28 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/3ulu0mmc-media/images/Results_50_37c6b51fadf8dcd14bcd.png +2023-03-05 19:57:17,727 INFO Thread-27 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/lypzpffc-media/images/Results_50_b3a66dfbca9e9dc2c9c6.png +2023-03-05 19:57:17,807 INFO Thread-29 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/9esdvn2k-media/images/Results_50_6e9f0ed7a2a378a3f5e5.png +2023-03-05 19:57:17,813 INFO Thread-24 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/2wm16ez5-media/images/Validation_50_47e4b210723974a87405.jpg +2023-03-05 19:57:17,828 INFO Thread-30 :158641 [upload_job.py:push():137] Uploaded file /tmp/tmph_x4q1jpwandb/3uajcmf2-media/images/Results_50_534ee3042242cf12269c.png +2023-03-05 19:57:18,752 DEBUG SenderThread:158641 [sender.py:send():232] send: exit +2023-03-05 19:57:18,752 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-05 19:57:18,752 INFO SenderThread:158641 [sender.py:send_exit():368] handling exit code: 0 +2023-03-05 19:57:18,754 INFO SenderThread:158641 [sender.py:send_exit():370] handling runtime: 5571 +2023-03-05 19:57:18,758 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:57:18,758 INFO SenderThread:158641 [sender.py:send_exit():376] send defer +2023-03-05 19:57:18,758 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: poll_exit +2023-03-05 19:57:18,759 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: defer +2023-03-05 19:57:18,759 INFO HandlerThread:158641 [handler.py:handle_request_defer():164] handle defer: 0 +2023-03-05 19:57:18,760 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: defer +2023-03-05 19:57:18,760 INFO SenderThread:158641 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-03-05 19:57:18,760 INFO SenderThread:158641 [sender.py:transition_state():389] send defer: 1 +2023-03-05 19:57:18,760 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: defer +2023-03-05 19:57:18,760 INFO HandlerThread:158641 [handler.py:handle_request_defer():164] handle defer: 1 +2023-03-05 19:57:19,027 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: defer +2023-03-05 19:57:19,027 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-05 19:57:19,027 INFO SenderThread:158641 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-03-05 19:57:19,028 INFO SenderThread:158641 [sender.py:transition_state():389] send defer: 2 +2023-03-05 19:57:19,028 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: poll_exit +2023-03-05 19:57:19,028 DEBUG SenderThread:158641 [sender.py:send():232] send: stats +2023-03-05 19:57:19,029 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: defer +2023-03-05 19:57:19,029 INFO HandlerThread:158641 [handler.py:handle_request_defer():164] handle defer: 2 +2023-03-05 19:57:19,029 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: defer +2023-03-05 19:57:19,029 INFO SenderThread:158641 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-03-05 19:57:19,029 INFO SenderThread:158641 [sender.py:transition_state():389] send defer: 3 +2023-03-05 19:57:19,030 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: defer +2023-03-05 19:57:19,030 INFO HandlerThread:158641 [handler.py:handle_request_defer():164] handle defer: 3 +2023-03-05 19:57:19,030 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: defer +2023-03-05 19:57:19,030 INFO SenderThread:158641 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-03-05 19:57:19,030 INFO SenderThread:158641 [sender.py:transition_state():389] send defer: 4 +2023-03-05 19:57:19,030 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: defer +2023-03-05 19:57:19,030 INFO HandlerThread:158641 [handler.py:handle_request_defer():164] handle defer: 4 +2023-03-05 19:57:19,031 DEBUG SenderThread:158641 [sender.py:send():232] send: summary +2023-03-05 19:57:19,054 INFO SenderThread:158641 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-05 19:57:19,056 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: defer +2023-03-05 19:57:19,056 INFO SenderThread:158641 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-03-05 19:57:19,056 INFO SenderThread:158641 [sender.py:transition_state():389] send defer: 5 +2023-03-05 19:57:19,056 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: defer +2023-03-05 19:57:19,057 INFO HandlerThread:158641 [handler.py:handle_request_defer():164] handle defer: 5 +2023-03-05 19:57:19,057 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: defer +2023-03-05 19:57:19,057 INFO SenderThread:158641 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-03-05 19:57:19,129 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-05 19:57:19,341 INFO SenderThread:158641 [sender.py:transition_state():389] send defer: 6 +2023-03-05 19:57:19,341 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: poll_exit +2023-03-05 19:57:19,342 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: defer +2023-03-05 19:57:19,342 INFO HandlerThread:158641 [handler.py:handle_request_defer():164] handle defer: 6 +2023-03-05 19:57:19,342 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: defer +2023-03-05 19:57:19,342 INFO SenderThread:158641 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-03-05 19:57:19,342 INFO SenderThread:158641 [dir_watcher.py:finish():279] shutting down directory watcher +2023-03-05 19:57:19,357 INFO SenderThread:158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:57:19,358 INFO SenderThread:158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:57:19,358 INFO SenderThread:158641 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/config.yaml +2023-03-05 19:57:19,358 INFO SenderThread:158641 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files +2023-03-05 19:57:19,360 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/conda-environment.yaml conda-environment.yaml +2023-03-05 19:57:19,361 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-metadata.json wandb-metadata.json +2023-03-05 19:57:19,361 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/requirements.txt requirements.txt +2023-03-05 19:57:19,364 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json wandb-summary.json +2023-03-05 19:57:19,364 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log output.log +2023-03-05 19:57:19,370 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/config.yaml config.yaml +2023-03-05 19:57:19,376 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_31ae070518e136612999.jpg media/images/Mosaics_0_31ae070518e136612999.jpg +2023-03-05 19:57:19,376 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_215461129a439e9d8941.jpg media/images/Validation_50_215461129a439e9d8941.jpg +2023-03-05 19:57:19,377 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_37c6b51fadf8dcd14bcd.png media/images/Results_50_37c6b51fadf8dcd14bcd.png +2023-03-05 19:57:19,377 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_cb97df7cc81b8e8b7a59.png media/images/Results_50_cb97df7cc81b8e8b7a59.png +2023-03-05 19:57:19,377 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_bc6ca511d46aa2a2bac8.jpg media/images/Mosaics_0_bc6ca511d46aa2a2bac8.jpg +2023-03-05 19:57:19,377 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_b3a66dfbca9e9dc2c9c6.png media/images/Results_50_b3a66dfbca9e9dc2c9c6.png +2023-03-05 19:57:19,377 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_60fe9449acac950b7536.jpg media/images/Validation_50_60fe9449acac950b7536.jpg +2023-03-05 19:57:19,377 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_95b415bb373b1526ec7b.jpg media/images/Validation_50_95b415bb373b1526ec7b.jpg +2023-03-05 19:57:19,377 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Labels_0_688adbaf4bfe9105092c.jpg media/images/Labels_0_688adbaf4bfe9105092c.jpg +2023-03-05 19:57:19,378 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png media/images/Results_50_1919cd7ca3699dbfdb9c.png +2023-03-05 19:57:19,378 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_534ee3042242cf12269c.png media/images/Results_50_534ee3042242cf12269c.png +2023-03-05 19:57:19,378 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Mosaics_0_17c2e2fc63e75c51efd3.jpg media/images/Mosaics_0_17c2e2fc63e75c51efd3.jpg +2023-03-05 19:57:19,378 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_47e4b210723974a87405.jpg media/images/Validation_50_47e4b210723974a87405.jpg +2023-03-05 19:57:19,378 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Results_50_6e9f0ed7a2a378a3f5e5.png media/images/Results_50_6e9f0ed7a2a378a3f5e5.png +2023-03-05 19:57:19,378 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Labels_0_951374f4059853176577.jpg media/images/Labels_0_951374f4059853176577.jpg +2023-03-05 19:57:19,378 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_42834517d314a8166315.jpg media/images/Validation_50_42834517d314a8166315.jpg +2023-03-05 19:57:19,378 INFO SenderThread:158641 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/media/images/Validation_50_0d8debff4c2235963100.jpg media/images/Validation_50_0d8debff4c2235963100.jpg +2023-03-05 19:57:19,378 INFO SenderThread:158641 [sender.py:transition_state():389] send defer: 7 +2023-03-05 19:57:19,380 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: defer +2023-03-05 19:57:19,380 INFO HandlerThread:158641 [handler.py:handle_request_defer():164] handle defer: 7 +2023-03-05 19:57:19,381 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: defer +2023-03-05 19:57:19,381 INFO SenderThread:158641 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-03-05 19:57:19,381 INFO SenderThread:158641 [file_pusher.py:finish():145] shutting down file pusher +2023-03-05 19:57:19,445 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-05 19:57:19,446 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: poll_exit +2023-03-05 19:57:19,549 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-05 19:57:19,549 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: poll_exit +2023-03-05 19:57:19,659 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-05 19:57:19,660 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: poll_exit +2023-03-05 19:57:19,736 INFO Thread-33 :158641 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/wandb-summary.json +2023-03-05 19:57:19,737 INFO Thread-32 :158641 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/requirements.txt +2023-03-05 19:57:19,767 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-05 19:57:19,767 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: poll_exit +2023-03-05 19:57:19,778 INFO Thread-35 :158641 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/config.yaml +2023-03-05 19:57:19,787 INFO Thread-34 :158641 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/output.log +2023-03-05 19:57:19,842 INFO Thread-31 :158641 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/files/conda-environment.yaml +2023-03-05 19:57:19,869 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-05 19:57:19,869 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: poll_exit +2023-03-05 19:57:19,970 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-05 19:57:19,970 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: poll_exit +2023-03-05 19:57:20,042 INFO Thread-6 :158641 [sender.py:transition_state():389] send defer: 8 +2023-03-05 19:57:20,042 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: defer +2023-03-05 19:57:20,042 INFO HandlerThread:158641 [handler.py:handle_request_defer():164] handle defer: 8 +2023-03-05 19:57:20,043 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: defer +2023-03-05 19:57:20,043 INFO SenderThread:158641 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-03-05 19:57:20,071 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-05 19:57:20,340 INFO SenderThread:158641 [sender.py:transition_state():389] send defer: 9 +2023-03-05 19:57:20,340 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: poll_exit +2023-03-05 19:57:20,341 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: defer +2023-03-05 19:57:20,341 INFO HandlerThread:158641 [handler.py:handle_request_defer():164] handle defer: 9 +2023-03-05 19:57:20,341 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: defer +2023-03-05 19:57:20,342 INFO SenderThread:158641 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-03-05 19:57:20,342 INFO SenderThread:158641 [sender.py:transition_state():389] send defer: 10 +2023-03-05 19:57:20,343 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: defer +2023-03-05 19:57:20,348 DEBUG SenderThread:158641 [sender.py:send():232] send: final +2023-03-05 19:57:20,348 INFO HandlerThread:158641 [handler.py:handle_request_defer():164] handle defer: 10 +2023-03-05 19:57:20,348 DEBUG SenderThread:158641 [sender.py:send():232] send: footer +2023-03-05 19:57:20,349 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: defer +2023-03-05 19:57:20,349 INFO SenderThread:158641 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-03-05 19:57:20,442 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-05 19:57:20,442 DEBUG SenderThread:158641 [sender.py:send_request():246] send_request: poll_exit +2023-03-05 19:57:20,443 INFO SenderThread:158641 [file_pusher.py:join():150] waiting for file pusher +2023-03-05 19:57:20,653 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: sampled_history +2023-03-05 19:57:20,656 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: get_summary +2023-03-05 19:57:20,657 DEBUG HandlerThread:158641 [handler.py:handle_request():141] handle_request: shutdown +2023-03-05 19:57:20,657 INFO HandlerThread:158641 [handler.py:finish():806] shutting down handler +2023-03-05 19:57:21,351 INFO WriterThread:158641 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/run-1r190qb3.wandb +2023-03-05 19:57:21,720 INFO SenderThread:158641 [sender.py:finish():1106] shutting down sender +2023-03-05 19:57:21,725 INFO SenderThread:158641 [file_pusher.py:finish():145] shutting down file pusher +2023-03-05 19:57:21,726 INFO SenderThread:158641 [file_pusher.py:join():150] waiting for file pusher +2023-03-05 19:57:21,731 INFO MainThread:158641 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/logs/debug.log b/yolov5_model/wandb/run-20230305_182425-1r190qb3/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..9cee8747d9d9d19657a3fb3195f3620acce97dc1 --- /dev/null +++ b/yolov5_model/wandb/run-20230305_182425-1r190qb3/logs/debug.log @@ -0,0 +1,147 @@ +2023-03-05 18:24:25,579 INFO MainThread:156261 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-03-05 18:24:25,580 INFO MainThread:156261 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-03-05 18:24:25,580 INFO MainThread:156261 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-03-05 18:24:25,580 INFO MainThread:156261 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-03-05 18:24:25,580 INFO MainThread:156261 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-03-05 18:24:25,580 INFO MainThread:156261 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/logs/debug.log +2023-03-05 18:24:25,580 INFO MainThread:156261 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230305_182425-1r190qb3/logs/debug-internal.log +2023-03-05 18:24:25,580 INFO MainThread:156261 [wandb_init.py:init():471] calling init triggers +2023-03-05 18:24:25,580 INFO MainThread:156261 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 50, 'batch_size': 16, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 8, 'project': 'runs/train', 'name': '6beetle_7-non_clean_bkg_overlap', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/6beetle_7-non_clean_bkg_overlap'} +2023-03-05 18:24:25,580 INFO MainThread:156261 [wandb_init.py:init():524] starting backend +2023-03-05 18:24:25,580 INFO MainThread:156261 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-03-05 18:24:25,597 INFO MainThread:156261 [backend.py:ensure_launched():217] starting backend process... +2023-03-05 18:24:25,609 INFO MainThread:156261 [backend.py:ensure_launched():222] started backend process with pid: 158641 +2023-03-05 18:24:25,610 INFO MainThread:156261 [wandb_init.py:init():533] backend started and connected +2023-03-05 18:24:25,616 INFO MainThread:156261 [wandb_init.py:init():597] updated telemetry +2023-03-05 18:24:25,653 INFO MainThread:156261 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-03-05 18:24:27,575 INFO MainThread:156261 [wandb_run.py:_on_init():1923] communicating current version +2023-03-05 18:24:27,629 INFO MainThread:156261 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.10 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-03-05 18:24:27,629 INFO MainThread:156261 [wandb_init.py:init():659] starting run threads in backend +2023-03-05 18:24:32,634 INFO MainThread:156261 [wandb_run.py:_console_start():1897] atexit reg +2023-03-05 18:24:32,635 INFO MainThread:156261 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-03-05 18:24:32,636 INFO MainThread:156261 [wandb_run.py:_redirect():1775] Redirecting console. +2023-03-05 18:24:32,637 INFO MainThread:156261 [wandb_run.py:_redirect():1831] Redirects installed. +2023-03-05 18:24:32,637 INFO MainThread:156261 [wandb_init.py:init():684] run started, returning control to user process +2023-03-05 19:57:15,960 INFO MainThread:156261 [wandb_run.py:_finish():1685] finishing run akhot2/YOLOv5/1r190qb3 +2023-03-05 19:57:15,967 INFO MainThread:156261 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 0 +2023-03-05 19:57:15,971 INFO MainThread:156261 [wandb_run.py:_restore():1838] restore +2023-03-05 19:57:18,760 INFO MainThread:156261 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47522031 + total_bytes: 47522031 +} + +2023-03-05 19:57:19,029 INFO MainThread:156261 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47522031 + total_bytes: 47522031 +} + +2023-03-05 19:57:19,342 INFO MainThread:156261 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47522031 + total_bytes: 47522031 +} + +2023-03-05 19:57:19,448 INFO MainThread:156261 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47522031 + total_bytes: 47662844 +} + +2023-03-05 19:57:19,549 INFO MainThread:156261 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47662844 + total_bytes: 47662844 +} + +2023-03-05 19:57:19,660 INFO MainThread:156261 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47662844 + total_bytes: 47662844 +} + +2023-03-05 19:57:19,768 INFO MainThread:156261 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47662844 + total_bytes: 47662844 +} + +2023-03-05 19:57:19,870 INFO MainThread:156261 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47662844 + total_bytes: 47662844 +} + +2023-03-05 19:57:19,971 INFO MainThread:156261 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47662844 + total_bytes: 47662844 +} + +2023-03-05 19:57:20,341 INFO MainThread:156261 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47662844 + total_bytes: 47662844 +} + +2023-03-05 19:57:20,553 INFO MainThread:156261 [wandb_run.py:_on_finish():1995] got exit ret: done: true +exit_result { +} +file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47662844 + total_bytes: 47662844 +} +local_info { +} + +2023-03-05 19:57:24,071 INFO MainThread:156261 [wandb_run.py:_footer_history_summary_info():3102] rendering history +2023-03-05 19:57:24,175 INFO MainThread:156261 [wandb_run.py:_footer_history_summary_info():3134] rendering summary +2023-03-05 19:57:24,190 INFO MainThread:156261 [wandb_run.py:_footer_sync_info():3057] logging synced files diff --git a/yolov5_model/wandb/run-20230305_182425-1r190qb3/run-1r190qb3.wandb b/yolov5_model/wandb/run-20230305_182425-1r190qb3/run-1r190qb3.wandb new file mode 100644 index 0000000000000000000000000000000000000000..6929a208c18c2963b5c3b988767bfd3f6b5e825c Binary files /dev/null and b/yolov5_model/wandb/run-20230305_182425-1r190qb3/run-1r190qb3.wandb differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/conda-environment.yaml b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/conda-environment.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3cdca88046552a769a1422af9039909dbf6cce9e --- /dev/null +++ b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/conda-environment.yaml @@ -0,0 +1,332 @@ +name: akhot2 +channels: + - pytorch + - anaconda + - conda-forge + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - _openmp_mutex=5.1=1_gnu + - _py-xgboost-mutex=2.0=cpu_0 + - _tflow_select=2.3.0=mkl + - aiohttp=3.8.1=py39h7f8727e_1 + - aiosignal=1.2.0=pyhd3eb1b0_0 + - argon2-cffi=21.3.0=pyhd3eb1b0_0 + - argon2-cffi-bindings=21.2.0=py39h7f8727e_0 + - astor=0.8.1=py39h06a4308_0 + - asttokens=2.0.5=pyhd3eb1b0_0 + - astunparse=1.6.3=py_0 + - async-timeout=4.0.1=pyhd3eb1b0_0 + - atk-1.0=2.36.0=ha1a6a79_0 + - attrs=21.4.0=pyhd3eb1b0_0 + - awkward=0.15.0=pyhd3deb0d_0 + - backcall=0.2.0=pyhd3eb1b0_0 + - beautifulsoup4=4.11.1=py39h06a4308_0 + - blas=1.0=mkl + - bleach=4.1.0=pyhd3eb1b0_0 + - blinker=1.4=py39h06a4308_0 + - blosc=1.21.0=h4ff587b_1 + - bottleneck=1.3.4=py39hce1f21e_0 + - brotli=1.0.9=he6710b0_2 + - brotlipy=0.7.0=py39h27cfd23_1003 + - bzip2=1.0.8=h7b6447c_0 + - c-ares=1.18.1=h7f8727e_0 + - ca-certificates=2023.01.10=h06a4308_0 + - cachetools=4.2.2=pyhd3eb1b0_0 + - cairo=1.16.0=h19f5f5c_2 + - certifi=2022.12.7=pyhd8ed1ab_0 + - cffi=1.15.0=py39hd667e15_1 + - charset-normalizer=2.0.4=pyhd3eb1b0_0 + - click=8.0.4=py39h06a4308_0 + - cloudpickle=2.0.0=pyhd3eb1b0_0 + - colorama=0.4.4=pyhd3eb1b0_0 + - cramjam=2.5.0=py39h860a657_0 + - cryptography=3.4.8=py39hd23ed53_0 + - cudatoolkit=11.3.1=h2bc3f7f_2 + - cython=0.29.28=py39h295c915_0 + - dataclasses=0.8=pyh6d0b6a4_7 + - dbus=1.13.18=hb2f20db_0 + - debugpy=1.5.1=py39h295c915_0 + - decorator=5.1.1=pyhd3eb1b0_0 + - defusedxml=0.7.1=pyhd3eb1b0_0 + - detectron2=0.5=py39hf2442f4_1 + - docker-pycreds=0.4.0=pyhd3eb1b0_0 + - entrypoints=0.4=py39h06a4308_0 + - et_xmlfile=1.1.0=py39h06a4308_0 + - executing=0.8.3=pyhd3eb1b0_0 + - expat=2.4.4=h295c915_0 + - fastparquet=0.8.1=py39hd257fcd_0 + - ffmpeg=4.2.2=h20bf706_0 + - filelock=3.7.1=pyhd8ed1ab_0 + - font-ttf-dejavu-sans-mono=2.37=hd3eb1b0_0 + - font-ttf-inconsolata=2.001=hcb22688_0 + - font-ttf-source-code-pro=2.030=hd3eb1b0_0 + - font-ttf-ubuntu=0.83=h8b1ccd4_0 + - fontconfig=2.13.1=h6c09931_0 + - fonts-anaconda=1=h8fa9717_0 + - fonts-conda-ecosystem=1=hd3eb1b0_0 + - fonttools=4.25.0=pyhd3eb1b0_0 + - freetype=2.11.0=h70c0345_0 + - fribidi=1.0.10=h7b6447c_0 + - frozenlist=1.2.0=py39h7f8727e_0 + - fsspec=2022.5.0=pyhd8ed1ab_0 + - future=0.18.2=py39h06a4308_1 + - fvcore=0.1.5.post20220506=pyhd8ed1ab_0 + - gdk-pixbuf=2.42.8=h433bba3_0 + - gdown=4.5.1=pyhd8ed1ab_0 + - gensim=4.1.2=py39h295c915_0 + - giflib=5.2.1=h7b6447c_0 + - gitdb=4.0.7=pyhd3eb1b0_0 + - gitpython=3.1.18=pyhd3eb1b0_1 + - glib=2.69.1=h4ff587b_1 + - gmp=6.2.1=h295c915_3 + - gnutls=3.6.15=he1e5248_0 + - gobject-introspection=1.68.0=py39he41a700_3 + - google-auth-oauthlib=0.4.4=pyhd3eb1b0_0 + - google-pasta=0.2.0=pyhd3eb1b0_0 + - graphite2=1.3.14=h295c915_1 + - graphviz=2.50.0=h3cd0ef9_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - gtk2=2.24.33=h73c1081_2 + - gts=0.7.6=hb67d8dd_3 + - h5py=3.6.0=py39ha0f2276_0 + - harfbuzz=4.3.0=hd55b92a_0 + - hdf5=1.10.6=hb1b8bf9_0 + - icu=58.2=he6710b0_3 + - importlib-metadata=4.11.3=py39h06a4308_0 + - intel-openmp=2021.4.0=h06a4308_3561 + - ipykernel=6.9.1=py39h06a4308_0 + - ipython=8.3.0=py39h06a4308_0 + - ipython_genutils=0.2.0=pyhd3eb1b0_1 + - ipywidgets=7.6.5=pyhd3eb1b0_1 + - jedi=0.18.1=py39h06a4308_1 + - jinja2=3.0.3=pyhd3eb1b0_0 + - joblib=1.1.0=pyhd3eb1b0_0 + - jpeg=9e=h7f8727e_0 + - jsonschema=4.4.0=py39h06a4308_0 + - jupyter=1.0.0=py39h06a4308_7 + - jupyter_client=7.2.2=py39h06a4308_0 + - jupyter_console=6.4.3=pyhd3eb1b0_0 + - jupyter_core=4.10.0=py39h06a4308_0 + - jupyterlab_pygments=0.1.2=py_0 + - jupyterlab_widgets=1.0.0=pyhd3eb1b0_1 + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 + - kiwisolver=1.4.2=py39h295c915_0 + - lame=3.100=h7b6447c_0 + - lcms2=2.12=h3be6417_0 + - ld_impl_linux-64=2.38=h1181459_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=11.2.0=h1234567_1 + - libgd=2.3.3=h695aa2c_1 + - libgfortran-ng=7.5.0=ha8ba4b0_17 + - libgfortran4=7.5.0=ha8ba4b0_17 + - libgomp=11.2.0=h1234567_1 + - libidn2=2.3.2=h7f8727e_0 + - libllvm11=11.1.0=h3826bc1_1 + - libopus=1.3.1=h7b6447c_0 + - libpng=1.6.37=hbc83047_0 + - libprotobuf=3.20.3=he621ea3_0 + - librsvg=2.54.4=h19fe530_0 + - libsodium=1.0.18=h7b6447c_0 + - libstdcxx-ng=11.2.0=h1234567_1 + - libtasn1=4.16.0=h27cfd23_0 + - libtiff=4.2.0=h2818925_1 + - libtool=2.4.6=h295c915_1008 + - libunistring=0.9.10=h27cfd23_0 + - libuuid=1.0.3=h7f8727e_2 + - libuv=1.40.0=h7b6447c_0 + - libvpx=1.7.0=h439df22_0 + - libwebp=1.2.2=h55f646e_0 + - libwebp-base=1.2.2=h7f8727e_0 + - libxcb=1.15=h7f8727e_0 + - libxgboost=1.5.1=cpu_h3d145d1_2 + - libxml2=2.9.14=h74e7548_0 + - lime=0.2.0.1=pyh9f0ad1d_0 + - lz4-c=1.9.3=h295c915_1 + - lzo=2.10=h7b6447c_2 + - markdown=3.3.4=py39h06a4308_0 + - markupsafe=2.1.1=py39h7f8727e_0 + - matplotlib=3.5.1=py39h06a4308_1 + - matplotlib-base=3.5.1=py39ha18d171_1 + - matplotlib-inline=0.1.2=pyhd3eb1b0_2 + - mistune=0.8.4=py39h27cfd23_1000 + - mkl=2021.4.0=h06a4308_640 + - mkl-service=2.4.0=py39h7f8727e_0 + - mkl_fft=1.3.1=py39hd3c417c_0 + - mkl_random=1.2.2=py39h51133e4_0 + - mock=4.0.3=pyhd3eb1b0_0 + - multidict=5.2.0=py39h7f8727e_2 + - munkres=1.1.4=py_0 + - nbclient=0.5.13=py39h06a4308_0 + - nbconvert=6.4.4=py39h06a4308_0 + - nbformat=5.3.0=py39h06a4308_0 + - ncurses=6.3=h7f8727e_2 + - nest-asyncio=1.5.5=py39h06a4308_0 + - nettle=3.7.3=hbbd107a_1 + - ninja=1.10.2=h06a4308_5 + - ninja-base=1.10.2=hd09550d_5 + - notebook=6.4.11=py39h06a4308_0 + - numexpr=2.8.1=py39h6abb31d_0 + - numpy-base=1.21.5=py39ha15fc14_3 + - oauthlib=3.2.0=pyhd3eb1b0_0 + - openh264=2.1.1=h4ff587b_0 + - openpyxl=3.0.10=py39h5eee18b_0 + - openssl=1.1.1s=h7f8727e_0 + - opt_einsum=3.3.0=pyhd3eb1b0_1 + - packaging=21.3=pyhd3eb1b0_0 + - pandas=1.4.2=py39h295c915_0 + - pandocfilters=1.5.0=pyhd3eb1b0_0 + - pango=1.50.7=h05da053_0 + - parso=0.8.3=pyhd3eb1b0_0 + - pathtools=0.1.2=pyhd3eb1b0_1 + - pcre=8.45=h295c915_0 + - pexpect=4.8.0=pyhd3eb1b0_3 + - pickleshare=0.7.5=pyhd3eb1b0_1003 + - pillow=9.0.1=py39h22f2fdc_0 + - pip=21.2.4=py39h06a4308_0 + - pixman=0.40.0=h7f8727e_1 + - portalocker=2.3.0=py39h06a4308_0 + - prometheus_client=0.13.1=pyhd3eb1b0_0 + - promise=2.3=py39h06a4308_0 + - prompt-toolkit=3.0.20=pyhd3eb1b0_0 + - prompt_toolkit=3.0.20=hd3eb1b0_0 + - psutil=5.8.0=py39h27cfd23_1 + - ptyprocess=0.7.0=pyhd3eb1b0_2 + - pure_eval=0.2.2=pyhd3eb1b0_0 + - py-xgboost=1.5.1=cpu_py39h4655687_2 + - pyasn1=0.4.8=pyhd3eb1b0_0 + - pyasn1-modules=0.2.8=py_0 + - pycocotools=2.0.2=py39hce5d2b2_2 + - pycparser=2.21=pyhd3eb1b0_0 + - pydot=1.4.2=py39hf3d152e_2 + - pygments=2.11.2=pyhd3eb1b0_0 + - pyjwt=2.1.0=py39h06a4308_0 + - pyopenssl=21.0.0=pyhd3eb1b0_1 + - pyqt=5.9.2=py39h2531618_6 + - pyrsistent=0.18.0=py39heee7806_0 + - pysocks=1.7.1=py39h06a4308_0 + - pytables=3.6.1=py39h77479fe_1 + - pythia8=8.305=py39he80948d_0 + - python=3.9.12=h12debd9_1 + - python-dateutil=2.8.2=pyhd3eb1b0_0 + - python-fastjsonschema=2.15.1=pyhd3eb1b0_0 + - python-graphviz=0.20.1=pyh22cad53_0 + - python_abi=3.9=2_cp39 + - pytorch=1.11.0=py3.9_cuda11.3_cudnn8.2.0_0 + - pytorch-model-summary=0.1.1=py_0 + - pytorch-mutex=1.0=cuda + - pytz=2022.1=py39h06a4308_0 + - pyyaml=6.0=py39h7f8727e_1 + - pyzmq=22.3.0=py39h295c915_2 + - qt=5.9.7=h5867ecd_1 + - qtconsole=5.3.0=pyhd3eb1b0_0 + - qtpy=2.0.1=pyhd3eb1b0_0 + - rclone=1.61.1=h519d9b9_0 + - readline=8.1.2=h7f8727e_1 + - requests=2.27.1=pyhd3eb1b0_0 + - requests-oauthlib=1.3.0=py_0 + - rsa=4.7.2=pyhd3eb1b0_1 + - scikit-learn=1.0.2=py39h51133e4_1 + - scipy=1.7.3=py39hc147768_0 + - seaborn=0.11.2=pyhd3eb1b0_0 + - send2trash=1.8.0=pyhd3eb1b0_1 + - sentry-sdk=1.5.12=pyhd8ed1ab_0 + - setproctitle=1.2.2=py39h27cfd23_1004 + - shap=0.40.0=py39hde0f152_1 + - shortuuid=1.0.8=py39hf3d152e_0 + - sip=4.19.13=py39h295c915_0 + - slicer=0.0.7=pyhd3eb1b0_0 + - smart_open=5.2.1=py39h06a4308_0 + - smmap=4.0.0=pyhd3eb1b0_0 + - soupsieve=2.3.1=pyhd3eb1b0_0 + - sqlite=3.38.3=hc218d9a_0 + - stack_data=0.2.0=pyhd3eb1b0_0 + - tabulate=0.8.9=py39h06a4308_0 + - tbb=2021.5.0=hd09550d_0 + - tensorboard-plugin-wit=1.6.0=py_0 + - termcolor=1.1.0=py39h06a4308_1 + - terminado=0.13.1=py39h06a4308_0 + - testpath=0.5.0=pyhd3eb1b0_0 + - threadpoolctl=2.2.0=pyh0d69192_0 + - tk=8.6.12=h1ccaba5_0 + - torchaudio=0.11.0=py39_cu113 + - torchinfo=1.6.5=pyhd8ed1ab_0 + - torchvision=0.12.0=py39_cu113 + - tornado=6.1=py39h27cfd23_0 + - tqdm=4.64.0=py39h06a4308_0 + - traitlets=5.1.1=pyhd3eb1b0_0 + - typing_extensions=4.1.1=pyh06a4308_0 + - tzdata=2022a=hda174b7_0 + - uproot-methods=0.9.2=pyhd8ed1ab_0 + - urllib3=1.26.9=py39h06a4308_0 + - wandb=0.12.15=pyhd8ed1ab_0 + - wcwidth=0.2.5=pyhd3eb1b0_0 + - webencodings=0.5.1=py39h06a4308_1 + - werkzeug=2.0.3=pyhd3eb1b0_0 + - widgetsnbextension=3.5.2=py39h06a4308_0 + - x264=1!157.20191217=h7b6447c_0 + - xgboost=1.5.1=cpu_py39h4655687_2 + - xz=5.2.5=h7f8727e_1 + - yacs=0.1.6=pyhd3eb1b0_1 + - yaml=0.2.5=h7b6447c_0 + - yarl=1.6.3=py39h27cfd23_0 + - zeromq=4.3.4=h2531618_0 + - zipp=3.8.0=py39h06a4308_0 + - zlib=1.2.13=h5eee18b_0 + - zstd=1.5.2=ha4553b6_0 + - pip: + - absl-py==1.1.0 + - chardet==4.0.0 + - commonmark==0.9.1 + - cycler==0.10.0 + - energyflow==1.3.2 + - flatbuffers==1.12 + - gast==0.3.3 + - google-auth==1.35.0 + - grpcio==1.32.0 + - idna==2.10 + - imageio==2.19.3 + - iniconfig==1.1.1 + - keras==2.9.0 + - keras-applications==1.0.8 + - lbn==1.2.2 + - libclang==14.0.1 + - llvmlite==0.36.0 + - modelstore==0.0.74 + - networkx==2.8.3 + - numba==0.53.0 + - numpy==1.20.0 + - opencv-python==4.7.0.68 + - pd4ml==0.3 + - pillow-heif==0.9.3 + - pluggy==1.0.0 + - protobuf==3.19.4 + - py==1.11.0 + - pyparsing==2.4.7 + - pytest==7.1.2 + - python-dotenv==0.21.1 + - pywavelets==1.3.0 + - requests-toolbelt==0.10.1 + - rich==12.4.4 + - roboflow==0.2.29 + - scikit-image==0.19.2 + - setuptools==67.3.2 + - six==1.15.0 + - tensorboard==2.9.1 + - tensorboard-data-server==0.6.1 + - tensorflow==2.9.1 + - tensorflow-decision-forests==0.2.6 + - tensorflow-estimator==2.9.0 + - tensorflow-io-gcs-filesystem==0.26.0 + - thop==0.1.1-2209072238 + - tifffile==2022.5.4 + - tomli==2.0.1 + - typing-extensions==3.7.4.3 + - vector==0.8.5 + - wasserstein==1.0.1 + - wget==3.2 + - wheel==0.38.4 + - wrapt==1.12.1 + - wurlitzer==3.0.2 +prefix: /raid/projects/akhot2/conda/envs/akhot2 diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/config.yaml b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..0b9260fc4555eb783cef95bb409a5f185586b0d9 --- /dev/null +++ b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/config.yaml @@ -0,0 +1,178 @@ +wandb_version: 1 + +_wandb: + desc: null + value: + cli_version: 0.12.15 + framework: torch + is_jupyter_run: false + is_kaggle_kernel: false + python_version: 3.9.12 + start_time: 1678463384 + t: + 1: + - 1 + - 2 + - 3 + - 41 + - 55 + 2: + - 1 + - 2 + - 3 + - 41 + - 55 + 3: + - 2 + - 13 + - 16 + 4: 3.9.12 + 5: 0.12.15 + 8: + - 5 +artifact_alias: + desc: null + value: latest +batch_size: + desc: null + value: 16 +bbox_interval: + desc: null + value: -1 +bucket: + desc: null + value: '' +cache: + desc: null + value: null +cfg: + desc: null + value: '' +cos_lr: + desc: null + value: false +data: + desc: null + value: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml +device: + desc: null + value: '' +entity: + desc: null + value: null +epochs: + desc: null + value: 50 +evolve: + desc: null + value: null +exist_ok: + desc: null + value: false +freeze: + desc: null + value: + - 0 +hyp: + desc: null + value: + anchor_t: 4.0 + box: 0.05 + cls: 0.5 + cls_pw: 1.0 + copy_paste: 0.0 + degrees: 0.0 + fl_gamma: 0.0 + fliplr: 0.5 + flipud: 0.0 + hsv_h: 0.015 + hsv_s: 0.7 + hsv_v: 0.4 + iou_t: 0.2 + lr0: 0.01 + lrf: 0.01 + mixup: 0.0 + momentum: 0.937 + mosaic: 1.0 + obj: 1.0 + obj_pw: 1.0 + perspective: 0.0 + scale: 0.5 + shear: 0.0 + translate: 0.1 + warmup_bias_lr: 0.1 + warmup_epochs: 3.0 + warmup_momentum: 0.8 + weight_decay: 0.0005 +image_weights: + desc: null + value: false +imgsz: + desc: null + value: 1280 +label_smoothing: + desc: null + value: 0.0 +local_rank: + desc: null + value: -1 +multi_scale: + desc: null + value: false +name: + desc: null + value: 6beetle_7-non_3dirt_bkg_over +noautoanchor: + desc: null + value: false +noplots: + desc: null + value: false +nosave: + desc: null + value: false +noval: + desc: null + value: false +optimizer: + desc: null + value: SGD +patience: + desc: null + value: 100 +project: + desc: null + value: runs/train +quad: + desc: null + value: false +rect: + desc: null + value: false +resume: + desc: null + value: false +save_dir: + desc: null + value: runs/train/6beetle_7-non_3dirt_bkg_over +save_period: + desc: null + value: -1 +seed: + desc: null + value: 0 +single_cls: + desc: null + value: false +sync_bn: + desc: null + value: false +upload_dataset: + desc: null + value: false +weights: + desc: null + value: yolov5m.pt +workers: + desc: null + value: 30 diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Labels_0_5811121eb1515a1b3bbc.jpg b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Labels_0_5811121eb1515a1b3bbc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5de07841d9e76e7c9e18c53d3e5a0a928e49eae5 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Labels_0_5811121eb1515a1b3bbc.jpg differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Labels_0_8d76b87e3d38a1bd9683.jpg b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Labels_0_8d76b87e3d38a1bd9683.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abd873c40c9c9f9986483428557fb87100f11306 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Labels_0_8d76b87e3d38a1bd9683.jpg differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_045960e3d5da99ba8de1.jpg b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_045960e3d5da99ba8de1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..eb47bd2eca3ed4f2e89ced6f988d20770b2310ea Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_045960e3d5da99ba8de1.jpg differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_ad9fe6a9be92b421451e.jpg b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_ad9fe6a9be92b421451e.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8830512aa79d3dbc31251076189cac66e13b3413 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_ad9fe6a9be92b421451e.jpg differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_f26e1830b98e0a6fa4f2.jpg b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_f26e1830b98e0a6fa4f2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7724ad7d6caa3169bf08861cec64cd78e44fd243 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_f26e1830b98e0a6fa4f2.jpg differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png new file mode 100644 index 0000000000000000000000000000000000000000..850b5a86a6d7f348a122e435f25f07c8922076b2 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_3aacbde9f4ccdc6ffcb2.png b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_3aacbde9f4ccdc6ffcb2.png new file mode 100644 index 0000000000000000000000000000000000000000..e96a9b26093f25dcd346bd4d472ecf14cd853a78 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_3aacbde9f4ccdc6ffcb2.png differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_4a81e87d45c2ecf01b25.png b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_4a81e87d45c2ecf01b25.png new file mode 100644 index 0000000000000000000000000000000000000000..60f47638e5fcad21f47c69a35ec7ed25265f3166 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_4a81e87d45c2ecf01b25.png differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_4ccc897b8b45ac9f81a4.png b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_4ccc897b8b45ac9f81a4.png new file mode 100644 index 0000000000000000000000000000000000000000..8b4e3bf826174e89f1a58af7cb3fac311de67f00 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_4ccc897b8b45ac9f81a4.png differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_6b457a729b9febfbe76b.png b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_6b457a729b9febfbe76b.png new file mode 100644 index 0000000000000000000000000000000000000000..4c34c8ae8aa5a47264e11d7fdd79825c348c4b72 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_6b457a729b9febfbe76b.png differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_a1f9aef70a86123584aa.png b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_a1f9aef70a86123584aa.png new file mode 100644 index 0000000000000000000000000000000000000000..f57508cd350923a0f3b5bee9ce9ae95569eef4b5 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_a1f9aef70a86123584aa.png differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_7c62560c618390788cd1.jpg b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_7c62560c618390788cd1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..452179fa948319f030cd45c52139ef09661e6fb4 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_7c62560c618390788cd1.jpg differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_aacb7bbfdb285aeb334c.jpg b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_aacb7bbfdb285aeb334c.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4dae8cfbe71bfee2988e0115598c2a7676ca6615 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_aacb7bbfdb285aeb334c.jpg differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_e16b7c341951b4665676.jpg b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_e16b7c341951b4665676.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1dc67e96f9b2237fba694cb7ce804a9cf00c523c Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_e16b7c341951b4665676.jpg differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_e3817cfcedad6311c596.jpg b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_e3817cfcedad6311c596.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d66a0cbe40d23a7d0920d4e0a5f51c9c6c3cd24 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_e3817cfcedad6311c596.jpg differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_f87c5fde5c980e56f5ac.jpg b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_f87c5fde5c980e56f5ac.jpg new file mode 100644 index 0000000000000000000000000000000000000000..86df205f0b5811ea35d7c362ea3e01853dffda0b Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_f87c5fde5c980e56f5ac.jpg differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_fed7a303bf60ffe0aa22.jpg b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_fed7a303bf60ffe0aa22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a75db4b6f369218fadccfa790b263ee188b962ab Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_fed7a303bf60ffe0aa22.jpg differ diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log new file mode 100644 index 0000000000000000000000000000000000000000..57f3f69e44581f9a61a176ef833d95d6d97412b1 --- /dev/null +++ b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log @@ -0,0 +1,831 @@ +Overriding model.yaml nc=80 with nc=1 + from n params module arguments + 0 -1 1 5280 models.common.Conv [3, 48, 6, 2, 2] + 1 -1 1 41664 models.common.Conv [48, 96, 3, 2] + 2 -1 2 65280 models.common.C3 [96, 96, 2] + 3 -1 1 166272 models.common.Conv [96, 192, 3, 2] + 4 -1 4 444672 models.common.C3 [192, 192, 4] + 5 -1 1 664320 models.common.Conv [192, 384, 3, 2] + 6 -1 6 2512896 models.common.C3 [384, 384, 6] + 7 -1 1 2655744 models.common.Conv [384, 768, 3, 2] + 8 -1 2 4134912 models.common.C3 [768, 768, 2] + 9 -1 1 1476864 models.common.SPPF [768, 768, 5] + 10 -1 1 295680 models.common.Conv [768, 384, 1, 1] + 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 12 [-1, 6] 1 0 models.common.Concat [1] + 13 -1 2 1182720 models.common.C3 [768, 384, 2, False] + 14 -1 1 74112 models.common.Conv [384, 192, 1, 1] + 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] + 16 [-1, 4] 1 0 models.common.Concat [1] + 17 -1 2 296448 models.common.C3 [384, 192, 2, False] + 18 -1 1 332160 models.common.Conv [192, 192, 3, 2] + 19 [-1, 14] 1 0 models.common.Concat [1] + 20 -1 2 1035264 models.common.C3 [384, 384, 2, False] + 21 -1 1 1327872 models.common.Conv [384, 384, 3, 2] + 22 [-1, 10] 1 0 models.common.Concat [1] + 23 -1 2 4134912 models.common.C3 [768, 768, 2, False] + 24 [17, 20, 23] 1 24246 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]] +Model summary: 291 layers, 20871318 parameters, 20871318 gradients, 48.2 GFLOPs +Transferred 475/481 items from yolov5m.pt +[34m[1mAMP: [39m[22mchecks passed ✅ +[34m[1moptimizer:[39m[22m SGD(lr=0.01) with parameter groups 79 weight(decay=0.0), 82 weight(decay=0.0005), 82 bias +[34m[1mtrain: [39m[22mScanning /projects/akhot2/group-01-phys371-sp2023/crop/data/train/labels... 1001 images, 116 backgrounds, 0 corrupt: 100%|██████████| 1001/1001 [00:00<00:00, 2021.93it/s] +[34m[1mtrain: [39m[22mNew cache created: /projects/akhot2/group-01-phys371-sp2023/crop/data/train/labels.cache +[34m[1mval: [39m[22mScanning /projects/akhot2/group-01-phys371-sp2023/crop/data/test/labels... 249 images, 24 backgrounds, 0 corrupt: 100%|██████████| 249/249 [00:00<00:00, 1073.70it/s] +[34m[1mval: [39m[22mNew cache created: /projects/akhot2/group-01-phys371-sp2023/crop/data/test/labels.cache +[34m[1mAutoAnchor: [39m[22m6.33 anchors/target, 1.000 Best Possible Recall (BPR). Current anchors are a good fit to dataset ✅ +Plotting labels to runs/train/6beetle_7-non_3dirt_bkg_over/labels.jpg... +Image sizes 1280 train, 1280 val +Using 16 dataloader workers +Logging results to [1mruns/train/6beetle_7-non_3dirt_bkg_over +Starting training for 50 epochs... + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + 0/49 24.7G 0.08205 0.07198 0 38 1280: 100%|██████████| 63/63 [00:41<00:00, 1.52it/s] + + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:03<00:00, 2.57it/s] + all 249 997 0.207 0.529 0.209 0.0588 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + 1/49 28.5G 0.0676 0.04231 0 64 1280: 100%|██████████| 63/63 [00:30<00:00, 2.04it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.69it/s] + all 249 997 0.395 0.711 0.458 0.17 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + 2/49 28.5G 0.06533 0.03283 0 53 1280: 100%|██████████| 63/63 [00:32<00:00, 1.92it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.75it/s] + all 249 997 0.52 0.826 0.61 0.197 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + 3/49 28.5G 0.0564 0.02834 0 55 1280: 100%|██████████| 63/63 [00:33<00:00, 1.90it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.68it/s] + all 249 997 0.68 0.976 0.841 0.412 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + 4/49 28.5G 0.04806 0.02614 0 50 1280: 100%|██████████| 63/63 [00:28<00:00, 2.19it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.84it/s] + all 249 997 0.989 0.984 0.985 0.526 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + 5/49 28.5G 0.04228 0.02292 0 44 1280: 100%|██████████| 63/63 [00:29<00:00, 2.10it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.75it/s] + all 249 997 0.989 0.985 0.987 0.537 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + 6/49 28.5G 0.03822 0.02149 0 40 1280: 100%|██████████| 63/63 [00:32<00:00, 1.94it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.69it/s] + all 249 997 0.992 0.995 0.994 0.595 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + 7/49 28.5G 0.03598 0.02197 0 36 1280: 100%|██████████| 63/63 [00:31<00:00, 2.02it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.65it/s] + all 249 997 0.961 0.99 0.991 0.66 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + 8/49 28.5G 0.03318 0.02073 0 46 1280: 100%|██████████| 63/63 [00:31<00:00, 2.02it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.62it/s] + all 249 997 0.998 0.996 0.995 0.662 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + + 9/49 28.5G 0.03221 0.02034 0 38 1280: 100%|██████████| 63/63 [00:32<00:00, 1.95it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.68it/s] + all 249 997 0.994 0.998 0.995 0.65 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + + + + + + + + + + + + + + + 10/49 28.5G 0.03058 0.01905 0 57 1280: 100%|██████████| 63/63 [00:31<00:00, 2.00it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.76it/s] + all 249 997 0.997 0.998 0.995 0.659 + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size + 11/49 28.5G 0.02852 0.0172 0 76 1280: 10%|▉ | 6/63 [00:01<00:17, 3.23it/s] + 11/49 28.5G 0.02907 0.01755 0 79 1280: 17%|█▋ | 11/63 [00:03<00:15, 3.27it/s] + 11/49 28.5G 0.02915 0.01795 0 89 1280: 22%|██■| 14/63 [00:04<00:18, 2.61it/s] + 11/49 28.5G 0.0296 0.01841 0 66 1280: 30%|███ | 19/63 [00:07<00:18, 2.40it/s] + 11/49 28.5G 0.02957 0.01827 0 86 1280: 41%|████■| 26/63 [00:09<00:11, 3.19it/s] + 11/49 28.5G 0.02953 0.01805 0 59 1280: 43%|████▎ | 27/63 [00:10<00:14, 2.46it/s] + 11/49 28.5G 0.02948 0.01803 0 98 1280: 48%|████▊ | 30/63 [00:13<00:22, 1.47it/s] + 11/49 28.5G 0.02952 0.01804 0 72 1280: 52%|█████■| 33/63 [00:16<00:19, 1.50it/s] + 11/49 28.5G 0.02946 0.0179 0 77 1280: 62%|██████■| 39/63 [00:17<00:08, 2.90it/s] + 11/49 28.5G 0.02938 0.01798 0 110 1280: 68%|██████▊ | 43/63 [00:19<00:06, 3.17it/s] + 11/49 28.5G 0.02931 0.01828 0 114 1280: 73%|███████▎ | 46/63 [00:22<00:10, 1.63it/s] + 11/49 28.5G 0.02924 0.01838 0 79 1280: 81%|████████ | 51/63 [00:26<00:06, 1.88it/s] + 11/49 28.5G 0.02921 0.01845 0 101 1280: 90%|█████████ | 57/63 [00:27<00:02, 2.98it/s] + 11/49 28.5G 0.02919 0.0183 0 65 1280: 97%|█████████▋| 61/63 [00:29<00:00, 2.82it/s] + 11/49 28.5G 0.02913 0.01832 0 63 1280: 100%|██████████| 63/63 [00:30<00:00, 2.04it/s] + all 249 997 0.999 0.999 0.995 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.729██████| 63/63 [00:30<00:00, 2.04it/s] + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:00<00:01, 3.41it/s] + Class Images Instances P R mAP50 mAP50-95: 100%|██████████| 8/8 [00:02<00:00, 3.63it/s] + 13/49 28.5G 0.02379 0.0163 0 102 1280: 6%|▋ | 4/63 [00:01<00:18, 3.19it/s] 3.63it/s] + 13/49 28.5G 0.02482 0.017 0 71 1280: 16%|█▌ | 10/63 [00:03<00:16, 3.13it/s]3.63it/s] + 13/49 28.5G 0.02589 0.01799 0 105 1280: 22%|██■| 14/63 [00:05<00:22, 2.18it/s]3.63it/s] + 13/49 28.5G 0.02595 0.01786 0 76 1280: 30%|███ | 19/63 [00:07<00:16, 2.68it/s]3.63it/s] + 13/49 28.5G 0.02669 0.01796 0 59 1280: 41%|████■| 26/63 [00:09<00:11, 3.14it/s]3.63it/s] + 13/49 28.5G 0.02675 0.01792 0 97 1280: 44%|████■| 28/63 [00:10<00:11, 3.03it/s]3.63it/s] + 13/49 28.5G 0.02675 0.01784 0 79 1280: 46%|████▌ | 29/63 [00:13<00:41, 1.21s/it]3.63it/s] + 13/49 28.5G 0.02702 0.01786 0 82 1280: 56%|█████▌ | 35/63 [00:15<00:12, 2.25it/s]3.63it/s] + 13/49 28.5G 0.02686 0.01788 0 91 1280: 65%|██████▌ | 41/63 [00:17<00:07, 3.12it/s]3.63it/s] + 13/49 28.5G 0.02683 0.01767 0 87 1280: 70%|██████▉ | 44/63 [00:18<00:05, 3.18it/s]3.63it/s] + 13/49 28.5G 0.02682 0.01772 0 74 1280: 78%|███████▊ | 49/63 [00:23<00:08, 1.68it/s]3.63it/s] + 13/49 28.5G 0.02678 0.01762 0 92 1280: 87%|████████▋ | 55/63 [00:25<00:02, 2.93it/s]3.63it/s] + 13/49 28.5G 0.02681 0.01761 0 81 1280: 95%|█████████▌| 60/63 [00:26<00:00, 3.24it/s]3.63it/s] + 13/49 28.5G 0.02686 0.01764 0 54 1280: 100%|██████████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + all 249 997 1 0.997 0.995 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.764██████| 63/63 [00:31<00:00, 2.02it/s]3.63it/s] + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + all 249 997 0.998 0.999 0.995 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.714: 25%|██▌ | 2/8 [00:00<00:01, 3.23it/s] + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.782: 75%|███████▌ | 6/8 [00:01<00:00, 3.49it/s] + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.801: 75%|███████▌ | 6/8 [00:01<00:00, 3.55it/s] + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.766: 50%|█████ | 4/8 [00:01<00:01, 3.27it/s] + Class Images Instances P R mAP50 mAP50-95: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.798: 88%|████████▊ | 7/8 [00:02<00:00, 3.53it/s] + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.835: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Class Images Instances P R mAP50 mAP50-95: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.837: 62%|██████▎ | 5/8 [00:01<00:00, 3.53it/s] + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + all 249 997 0.999 0.998 0.995 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.829: 0%| | 0/8 [00:00<?, ?it/s].53it/s] + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + all 249 997 1 0.998 0.995 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.857: 12%|█▎ | 1/8 [00:00<00:02, 3.46it/s] + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.85: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + all 249 997 0.999 0.998 0.995 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.871: 12%|█▎ | 1/8 [00:00<00:02, 3.13it/s] + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.859: 25%|██▌ | 2/8 [00:00<00:01, 3.38it/s] + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + all 249 997 1 0.997 0.995 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.879: 12%|█▎ | 1/8 [00:00<00:02, 3.43it/s] + Class Images Instances P R mAP50 mAP50-95: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 62%|██████▎ | 5/8 [00:01<00:00, 3.32it/s] + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + all 249 997 1 0.998 0.995 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.885: 12%|█▎ | 1/8 [00:00<00:02, 3.36it/s] + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.884: 38%|███▊ | 3/8 [00:00<00:01, 3.32it/s] + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + all 249 997 1 0.998 0.995 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.881: 25%|██▌ | 2/8 [00:00<00:01, 3.20it/s] + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + all 249 997 1 0.998 0.995 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.892: 50%|█████ | 4/8 [00:01<00:01, 3.50it/s] + Class Images Instances P R mAP50 mAP50-95: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.89: 62%|██████▎ | 5/8 [00:01<00:00, 3.57it/s] + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + all 249 997 1 0.998 0.995 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.889: 12%|█▎ | 1/8 [00:00<00:02, 3.47it/s] + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + all 249 997 1 0.998 0.995 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 12%|█▎ | 1/8 [00:00<00:02, 3.44it/s] + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + all 249 997 1 0.998 0.995 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.909: 50%|█████ | 4/8 [00:01<00:01, 3.46it/s] + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.905: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.918: 0%| | 0/8 [00:00<?, ?it/s].46it/s] + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + all 249 997 0.999 0.998 0.995 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.925: 38%|███▊ | 3/8 [00:00<00:01, 3.19it/s] + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + all 249 997 1 0.998 0.995 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.908: 25%|██▌ | 2/8 [00:00<00:01, 3.45it/s] + Class Images Instances P R mAP50 mAP50-95: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + all 249 997 1 0.998 0.995 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.928: 0%| | 0/8 [00:00<?, ?it/s].45it/s] + Class Images Instances P R mAP50 mAP50-95: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.913: 75%|███████▌ | 6/8 [00:01<00:00, 3.61it/s] + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + all 249 997 1 0.998 0.995 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.931: 25%|██▌ | 2/8 [00:00<00:01, 3.21it/s] + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Class Images Instances P R mAP50 mAP50-95: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 12%|█▎ | 1/8 [00:00<00:02, 3.17it/s] + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + all 249 997 1 0.997 0.995 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.938: 50%|█████ | 4/8 [00:01<00:01, 3.54it/s] + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.936: 50%|█████ | 4/8 [00:01<00:01, 3.55it/s] + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + all 249 997 1 0.998 0.995 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.935: 25%|██▌ | 2/8 [00:00<00:02, 2.92it/s] + Class Images Instances P R mAP50 mAP50-95: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + all 249 997 1 0.998 0.995 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 50%|█████ | 4/8 [00:01<00:01, 3.62it/s] + Class Images Instances P R mAP50 mAP50-95: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + all 249 997 1 0.998 0.995 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Epoch GPU_mem box_loss obj_loss cls_loss Instances Size 0.944: 38%|███▊ | 3/8 [00:00<00:01, 3.53it/s] + Class Images Instances P R mAP50 mAP50-95: 25%|██▌ | 2/8 [00:00<00:01, 3.44it/s] + all 249 997 1 0.998 0.995 0.947: 25%|██▌ | 2/8 [00:00<00:01, 3.44it/s] +Validating runs/train/6beetle_7-non_3dirt_bkg_over/weights/best.pt...ts/best.pt, 42.5MB7: 25%|██▌ | 2/8 [00:00<00:01, 3.44it/s] +Model summary: 212 layers, 20852934 parameters, 0 gradients, 47.9 GFLOPsbest.pt, 42.5MB7: 25%|██▌ | 2/8 [00:00<00:01, 3.44it/s] +Model summary: 212 layers, 20852934 parameters, 0 gradients, 47.9 GFLOPsbest.pt, 42.5MB7: 25%|██▌ | 2/8 [00:00<00:01, 3.44it/s] + all 249 997 1 0.998 0.995 0.947: 25%|██▌ | 2/8 [00:00<00:01, 3.44it/s] + all 249 997 1 0.998 0.995 0.947: 25%|██▌ | 2/8 [00:00<00:01, 3.44it/s] + all 249 997 1 0.998 0.995 0.947: 25%|██▌ | 2/8 [00:00<00:01, 3.44it/s] + all 249 997 1 0.998 0.995 0.947: 25%|██▌ | 2/8 [00:00<00:01, 3.44it/s] \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/requirements.txt b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a80c24390ca9a31f38b0630d7799dbc2def0735 --- /dev/null +++ b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/requirements.txt @@ -0,0 +1,216 @@ +absl-py==1.1.0 +aiohttp==3.8.1 +aiosignal==1.2.0 +argon2-cffi-bindings==21.2.0 +argon2-cffi==21.3.0 +astor==0.8.1 +asttokens==2.0.5 +astunparse==1.6.3 +async-timeout==4.0.1 +attrs==21.4.0 +awkward==0.14.0 +backcall==0.2.0 +beautifulsoup4==4.11.1 +bleach==4.1.0 +blinker==1.4 +bottleneck==1.3.4 +brotlipy==0.7.0 +cachetools==4.2.2 +certifi==2022.12.7 +cffi==1.15.0 +chardet==4.0.0 +charset-normalizer==2.0.4 +click==8.0.4 +cloudpickle==2.0.0 +colorama==0.4.4 +commonmark==0.9.1 +cramjam==2.5.0 +cryptography==3.4.8 +cycler==0.11.0 +cython==0.29.28 +debugpy==1.5.1 +decorator==5.1.1 +defusedxml==0.7.1 +detectron2==0.5 +docker-pycreds==0.4.0 +energyflow==1.3.2 +entrypoints==0.4 +et-xmlfile==1.1.0 +executing==0.8.3 +fastjsonschema==2.15.1 +fastparquet==0.8.1 +filelock==3.7.1 +flatbuffers==1.12 +fonttools==4.25.0 +frozenlist==1.2.0 +fsspec==2022.5.0 +future==0.18.2 +fvcore==0.1.5.post20220506 +gast==0.4.0 +gdown==4.5.1 +gensim==4.1.2 +gitdb==4.0.7 +gitpython==3.1.18 +google-auth-oauthlib==0.4.4 +google-auth==2.6.0 +google-pasta==0.2.0 +graphviz==0.20.1 +grpcio==1.42.0 +h5py==3.6.0 +idna==3.4 +imageio==2.19.3 +importlib-metadata==4.11.3 +iniconfig==1.1.1 +ipykernel==6.9.1 +ipython-genutils==0.2.0 +ipython==8.3.0 +ipywidgets==7.6.5 +jedi==0.18.1 +jinja2==3.0.3 +joblib==1.1.0 +jsonschema==4.4.0 +jupyter-client==7.2.2 +jupyter-console==6.4.3 +jupyter-core==4.10.0 +jupyter==1.0.0 +jupyterlab-pygments==0.1.2 +jupyterlab-widgets==1.0.0 +keras-applications==1.0.8 +keras-preprocessing==1.1.2 +keras==2.9.0 +kiwisolver==1.4.2 +lbn==1.2.2 +libclang==14.0.1 +lime==0.2.0.1 +llvmlite==0.38.0 +markdown==3.3.4 +markupsafe==2.1.1 +matplotlib-inline==0.1.2 +matplotlib==3.5.1 +mistune==0.8.4 +mkl-fft==1.3.1 +mkl-random==1.2.2 +mkl-service==2.4.0 +mock==4.0.3 +modelstore==0.0.74 +multidict==5.2.0 +munkres==1.1.4 +nbclient==0.5.13 +nbconvert==6.4.4 +nbformat==5.3.0 +nest-asyncio==1.5.5 +networkx==2.8.3 +notebook==6.4.11 +numba==0.55.1 +numexpr==2.8.1 +numpy==1.21.5 +oauthlib==3.2.0 +opencv-python==4.7.0.68 +openpyxl==3.0.10 +opt-einsum==3.3.0 +packaging==21.3 +pandas==1.4.2 +pandocfilters==1.5.0 +parso==0.8.3 +pathtools==0.1.2 +pd4ml==0.3 +pexpect==4.8.0 +pickleshare==0.7.5 +pillow-heif==0.9.3 +pillow==9.0.1 +pip==21.2.4 +pluggy==1.0.0 +portalocker==2.3.0 +prometheus-client==0.13.1 +promise==2.3 +prompt-toolkit==3.0.20 +protobuf==3.19.6 +psutil==5.8.0 +ptyprocess==0.7.0 +pure-eval==0.2.2 +py==1.11.0 +pyasn1-modules==0.2.8 +pyasn1==0.4.8 +pycocotools==2.0.2 +pycparser==2.21 +pydot==1.4.2 +pygments==2.11.2 +pyjwt==2.1.0 +pyopenssl==21.0.0 +pyparsing==3.0.9 +pyrsistent==0.18.0 +pysocks==1.7.1 +pytest==7.1.2 +python-dateutil==2.8.2 +python-dotenv==0.21.1 +pytorch-model-summary==0.1.1 +pytz==2022.1 +pywavelets==1.3.0 +pyyaml==6.0 +pyzmq==22.3.0 +qtconsole==5.3.0 +qtpy==2.0.1 +requests-oauthlib==1.3.0 +requests-toolbelt==0.10.1 +requests==2.27.1 +rich==12.4.4 +roboflow==0.2.29 +rsa==4.7.2 +scikit-image==0.19.2 +scikit-learn==1.0.2 +scipy==1.7.3 +seaborn==0.11.2 +send2trash==1.8.0 +sentry-sdk==1.5.12 +setproctitle==1.2.2 +setuptools==67.3.2 +shap==0.40.0 +shortuuid==1.0.8 +sip==4.19.13 +six==1.16.0 +slicer==0.0.7 +smart-open==5.2.1 +smmap==4.0.0 +soupsieve==2.3.1 +stack-data==0.2.0 +tables==3.6.1 +tabulate==0.8.9 +tensorboard-data-server==0.6.1 +tensorboard-plugin-wit==1.6.0 +tensorboard==2.9.1 +tensorflow-decision-forests==0.2.6 +tensorflow-estimator==2.9.0 +tensorflow-io-gcs-filesystem==0.26.0 +tensorflow==2.9.1 +termcolor==1.1.0 +terminado==0.13.1 +testpath==0.5.0 +thop==0.1.1.post2209072238 +threadpoolctl==2.2.0 +tifffile==2022.5.4 +tomli==2.0.1 +torch==1.11.0 +torchaudio==0.11.0 +torchinfo==1.6.5 +torchvision==0.12.0 +tornado==6.1 +tqdm==4.64.0 +traitlets==5.1.1 +typing-extensions==4.1.1 +uproot-methods==0.9.2 +urllib3==1.26.9 +vector==0.8.5 +wandb==0.12.15 +wasserstein==1.0.1 +wcwidth==0.2.5 +webencodings==0.5.1 +werkzeug==2.0.3 +wget==3.2 +wheel==0.38.4 +widgetsnbextension==3.5.2 +wrapt==1.13.3 +wurlitzer==3.0.2 +xgboost==1.5.1 +yacs==0.1.6 +yarl==1.6.3 +zipp==3.8.0 \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-metadata.json b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-metadata.json new file mode 100644 index 0000000000000000000000000000000000000000..09ed01720c91d6442474ecab9e56654a7c484900 --- /dev/null +++ b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-metadata.json @@ -0,0 +1,39 @@ +{ + "os": "Linux-3.10.0-1160.81.1.el7.x86_64-x86_64-with-glibc2.17", + "python": "3.9.12", + "heartbeatAt": "2023-03-10T15:49:48.103651", + "startedAt": "2023-03-10T15:49:44.301850", + "docker": null, + "gpu": "A100-SXM4-40GB", + "gpu_count": 1, + "cpu_count": 256, + "cuda": "11.0.228", + "args": [ + "--img", + "1280", + "--batch", + "16", + "--epochs", + "50", + "--data", + "beetles.yaml", + "--weights", + "yolov5m.pt", + "--workers", + "30", + "--name", + "6beetle_7-non_3dirt_bkg_over" + ], + "state": "running", + "program": "/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py", + "codePath": "yolov5_model/train.py", + "git": { + "remote": "https://gitlab.engr.illinois.edu/akhot2/group-01-phys371-sp2023", + "commit": "cea9a34de2e8800cc273cc3f2f41176e015fd0a8" + }, + "email": "khotayush@gmail.com", + "root": "/projects/akhot2/group-01-phys371-sp2023", + "host": "hal-dgx", + "username": "akhot2", + "executable": "/raid/projects/akhot2/conda/envs/akhot2/bin/python" +} diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json new file mode 100644 index 0000000000000000000000000000000000000000..2a3e4635fa55a923571dbcff07c8a2eee6beba6c --- /dev/null +++ b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json @@ -0,0 +1 @@ +{"best/epoch": 49, "best/precision": 0.9999126670484886, "best/recall": 0.9979939819458375, "best/mAP_0.5": 0.995, "best/mAP_0.5:0.95": 0.9469364751694165, "Labels": {"_type": "images/separated", "width": 1600, "height": 1600, "format": "jpg", "count": 2, "filenames": ["media/images/Labels_0_5811121eb1515a1b3bbc.jpg", "media/images/Labels_0_8d76b87e3d38a1bd9683.jpg"], "captions": ["labels.jpg", "labels_correlogram.jpg"]}, "Mosaics": {"_type": "images/separated", "width": 1920, "height": 1920, "format": "jpg", "count": 3, "filenames": ["media/images/Mosaics_0_ad9fe6a9be92b421451e.jpg", "media/images/Mosaics_0_f26e1830b98e0a6fa4f2.jpg", "media/images/Mosaics_0_045960e3d5da99ba8de1.jpg"], "captions": ["train_batch0.jpg", "train_batch1.jpg", "train_batch2.jpg"]}, "train/box_loss": 0.008798458613455296, "train/obj_loss": 0.008838523179292679, "train/cls_loss": 0.0, "metrics/precision": 0.9999104298718864, "metrics/recall": 0.9979939819458375, "metrics/mAP_0.5": 0.995, "metrics/mAP_0.5:0.95": 0.9468678662958592, "val/box_loss": 0.0070671821013092995, "val/obj_loss": 0.008731961250305176, "val/cls_loss": 0.0, "x/lr0": 0.0004960000000000005, "x/lr1": 0.0004960000000000005, "x/lr2": 0.0004960000000000005, "_timestamp": 1678465166, "_runtime": 1782, "_step": 50, "Validation": {"_type": "images/separated", "width": 1548, "height": 1920, "format": "jpg", "count": 6, "filenames": ["media/images/Validation_50_f87c5fde5c980e56f5ac.jpg", "media/images/Validation_50_aacb7bbfdb285aeb334c.jpg", "media/images/Validation_50_fed7a303bf60ffe0aa22.jpg", "media/images/Validation_50_e16b7c341951b4665676.jpg", "media/images/Validation_50_e3817cfcedad6311c596.jpg", "media/images/Validation_50_7c62560c618390788cd1.jpg"], "captions": ["val_batch0_labels.jpg", "val_batch0_pred.jpg", "val_batch1_labels.jpg", "val_batch1_pred.jpg", "val_batch2_labels.jpg", "val_batch2_pred.jpg"]}, "Results": {"_type": "images/separated", "width": 2400, "height": 1200, "format": "png", "count": 6, "filenames": ["media/images/Results_50_6b457a729b9febfbe76b.png", "media/images/Results_50_1919cd7ca3699dbfdb9c.png", "media/images/Results_50_4ccc897b8b45ac9f81a4.png", "media/images/Results_50_3aacbde9f4ccdc6ffcb2.png", "media/images/Results_50_a1f9aef70a86123584aa.png", "media/images/Results_50_4a81e87d45c2ecf01b25.png"], "captions": ["results.png", "confusion_matrix.png", "F1_curve.png", "PR_curve.png", "P_curve.png", "R_curve.png"]}, "_wandb": {"runtime": 1783}} \ No newline at end of file diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/logs/debug-internal.log b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/logs/debug-internal.log new file mode 100644 index 0000000000000000000000000000000000000000..0b8c208f189f1a4b2507885f643b2a96ba3a85a6 --- /dev/null +++ b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/logs/debug-internal.log @@ -0,0 +1,1874 @@ +2023-03-10 09:49:45,590 INFO MainThread:103541 [internal.py:wandb_internal():90] W&B internal server running at pid: 103541, started at: 2023-03-10 09:49:45.589774 +2023-03-10 09:49:45,592 INFO WriterThread:103541 [datastore.py:open_for_write():75] open: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/run-c6nn9q90.wandb +2023-03-10 09:49:45,594 DEBUG SenderThread:103541 [sender.py:send():232] send: header +2023-03-10 09:49:45,595 DEBUG SenderThread:103541 [sender.py:send():232] send: run +2023-03-10 09:49:45,603 INFO SenderThread:103541 [sender.py:_maybe_setup_resume():489] checking resume status for None/YOLOv5/c6nn9q90 +2023-03-10 09:49:45,758 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: check_version +2023-03-10 09:49:45,764 INFO SenderThread:103541 [dir_watcher.py:__init__():166] watching files in: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files +2023-03-10 09:49:45,764 INFO SenderThread:103541 [sender.py:_start_run_threads():811] run started: c6nn9q90 with start time 1678463384 +2023-03-10 09:49:45,764 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:49:45,766 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:49:45,766 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: check_version +2023-03-10 09:49:45,799 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: run_start +2023-03-10 09:49:46,779 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:49:48,103 DEBUG HandlerThread:103541 [meta.py:__init__():35] meta init +2023-03-10 09:49:48,103 DEBUG HandlerThread:103541 [meta.py:__init__():49] meta init done +2023-03-10 09:49:48,103 DEBUG HandlerThread:103541 [meta.py:probe():209] probe +2023-03-10 09:49:48,113 DEBUG HandlerThread:103541 [meta.py:_setup_git():199] setup git +2023-03-10 09:49:48,148 DEBUG HandlerThread:103541 [meta.py:_setup_git():206] setup git done +2023-03-10 09:49:48,148 DEBUG HandlerThread:103541 [meta.py:_save_pip():53] save pip +2023-03-10 09:49:48,150 DEBUG HandlerThread:103541 [meta.py:_save_pip():67] save pip done +2023-03-10 09:49:48,150 DEBUG HandlerThread:103541 [meta.py:_save_conda():74] save conda +2023-03-10 09:49:48,780 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/requirements.txt +2023-03-10 09:49:48,781 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/conda-environment.yaml +2023-03-10 09:49:51,783 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:49:53,279 DEBUG HandlerThread:103541 [meta.py:_save_conda():84] save conda done +2023-03-10 09:49:53,279 DEBUG HandlerThread:103541 [meta.py:probe():247] probe done +2023-03-10 09:49:53,287 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:49:53,287 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:49:53,333 DEBUG SenderThread:103541 [sender.py:send():232] send: telemetry +2023-03-10 09:49:53,333 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 09:49:53,334 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-metadata.json with policy now +2023-03-10 09:49:53,699 INFO Thread-11 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/2y8muox7-wandb-metadata.json +2023-03-10 09:49:53,785 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:49:53,786 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/conda-environment.yaml +2023-03-10 09:49:53,786 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-metadata.json +2023-03-10 09:49:59,790 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:01,799 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:03,825 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:05,829 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:08,488 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:50:08,502 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:50:09,910 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:13,962 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:16,001 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/config.yaml +2023-03-10 09:50:17,855 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:50:23,690 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:50:23,692 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:50:29,134 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:31,137 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:33,140 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:35,142 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:37,146 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:38,769 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:50:38,770 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:50:39,149 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:41,152 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:43,155 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:45,163 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:47,165 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:49,168 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:49,454 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:50:51,171 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:53,174 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:53,825 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:50:53,825 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:50:55,177 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:57,134 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:50:57,136 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:50:57,136 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:50:57,138 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:50:57,138 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:50:57,141 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:50:57,141 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:50:57,143 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:50:57,143 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:50:57,144 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:50:57,186 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:50:57,186 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:50:57,244 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 09:50:57,244 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Labels_0_5811121eb1515a1b3bbc.jpg with policy now +2023-03-10 09:50:57,251 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 09:50:57,251 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Labels_0_8d76b87e3d38a1bd9683.jpg with policy now +2023-03-10 09:50:57,354 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 09:50:57,355 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Mosaics_0_ad9fe6a9be92b421451e.jpg with policy now +2023-03-10 09:50:57,364 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 09:50:57,364 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Mosaics_0_f26e1830b98e0a6fa4f2.jpg with policy now +2023-03-10 09:50:57,372 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 09:50:57,372 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Mosaics_0_045960e3d5da99ba8de1.jpg with policy now +2023-03-10 09:50:57,530 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:50:57,536 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:50:57,537 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:50:57,540 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:50:57,650 INFO Thread-13 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/3vsjgyyo-media/images/Labels_0_8d76b87e3d38a1bd9683.jpg +2023-03-10 09:50:57,662 INFO Thread-12 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/cifp0uog-media/images/Labels_0_5811121eb1515a1b3bbc.jpg +2023-03-10 09:50:57,741 INFO Thread-14 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/32q3qcaa-media/images/Mosaics_0_ad9fe6a9be92b421451e.jpg +2023-03-10 09:50:57,770 INFO Thread-15 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/1mhyqk0l-media/images/Mosaics_0_f26e1830b98e0a6fa4f2.jpg +2023-03-10 09:50:57,782 INFO Thread-16 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/w4ojpn6b-media/images/Mosaics_0_045960e3d5da99ba8de1.jpg +2023-03-10 09:50:58,192 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_045960e3d5da99ba8de1.jpg +2023-03-10 09:50:58,192 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Labels_0_5811121eb1515a1b3bbc.jpg +2023-03-10 09:50:58,192 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Labels_0_8d76b87e3d38a1bd9683.jpg +2023-03-10 09:50:58,192 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_f26e1830b98e0a6fa4f2.jpg +2023-03-10 09:50:58,192 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_ad9fe6a9be92b421451e.jpg +2023-03-10 09:50:58,193 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media +2023-03-10 09:50:58,193 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images +2023-03-10 09:50:59,197 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:01,206 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:03,214 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:05,218 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:07,223 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:08,876 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:51:08,877 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:51:09,228 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:11,236 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:13,242 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:15,245 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:17,249 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:19,255 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:20,748 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:51:21,263 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:23,267 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:23,940 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:51:23,940 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:51:25,272 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:27,279 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:29,282 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:31,696 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:51:31,698 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:51:31,699 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:51:31,699 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:51:31,702 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:51:31,702 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:51:31,708 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:51:31,708 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:51:31,710 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:51:31,711 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:51:31,712 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:51:31,712 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:51:31,712 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:51:31,713 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:51:32,304 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:32,304 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:51:34,309 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:36,314 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:37,317 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:38,996 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:51:38,997 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:51:39,325 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:42,335 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:43,339 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:45,343 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:47,352 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:50,360 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:51,970 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:51:52,366 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:54,048 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:51:54,048 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:51:54,370 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:56,374 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:51:58,379 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:00,383 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:02,387 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:04,395 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:06,400 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:07,932 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:07,935 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:52:07,937 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:07,938 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:07,941 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:07,941 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:07,943 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:07,943 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:07,945 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:07,945 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:07,947 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:07,947 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:52:07,947 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:07,951 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:08,419 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:08,420 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:52:09,105 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:52:09,105 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:52:09,425 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:11,440 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:13,449 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:15,454 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:17,458 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:19,462 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:21,465 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:23,213 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:52:23,469 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:24,163 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:52:24,164 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:52:25,474 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:27,480 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:29,487 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:31,492 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:35,500 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:37,504 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:39,219 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:52:39,219 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:52:39,509 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:41,513 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:43,524 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:44,457 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:44,459 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:52:44,461 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:44,461 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:44,463 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:44,463 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:44,464 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:44,464 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:44,465 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:44,465 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:44,466 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:44,466 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:52:44,466 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:52:44,467 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:52:44,528 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:52:46,538 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:47,542 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:49,562 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:51,574 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:53,579 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:54,274 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:52:54,274 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:52:54,483 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:52:55,584 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:57,590 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:52:59,594 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:01,598 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:03,602 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:05,608 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:07,613 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:09,331 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:53:09,332 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:53:09,621 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:11,627 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:13,632 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:15,642 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:16,563 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:53:16,563 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:16,567 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:16,568 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:16,571 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:16,572 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:16,574 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:16,575 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:16,577 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:16,577 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:16,578 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:16,578 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:53:16,578 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:16,581 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:16,646 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:53:18,652 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:20,657 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:22,665 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:24,383 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:53:24,383 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:53:24,669 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:25,775 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:53:26,676 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:30,684 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:32,694 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:34,698 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:36,702 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:38,708 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:39,435 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:53:39,435 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:53:40,713 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:42,719 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:43,736 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:47,748 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:49,756 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:50,188 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:53:50,189 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:50,192 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:50,193 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:50,194 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:50,194 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:50,198 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:50,199 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:50,200 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:50,200 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:50,201 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:50,202 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:53:50,202 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:53:50,203 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:53:50,762 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:53:51,766 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:53,772 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:54,516 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:53:54,517 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:53:55,778 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:56,997 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:53:57,782 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:53:59,785 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:01,790 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:05,804 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:07,808 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:09,576 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:54:09,577 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:54:09,816 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:13,824 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:15,831 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:17,834 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:19,839 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:21,843 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:23,847 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:24,630 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:54:24,631 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:54:25,857 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:25,948 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:54:25,949 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:54:25,952 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:54:25,952 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:54:25,955 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:54:25,955 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:54:25,957 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:54:25,957 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:54:25,959 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:54:25,959 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:54:25,960 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:54:25,960 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:54:25,961 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:54:25,962 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:54:26,861 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:54:27,867 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:28,247 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:54:29,872 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:31,877 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:33,883 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:35,889 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:37,894 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:39,687 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:54:39,688 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:54:39,900 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:41,905 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:43,914 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:45,919 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:47,925 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:49,930 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:51,936 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:53,942 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:54,747 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:54:54,748 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:54:55,948 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:57,954 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:54:59,470 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:54:59,962 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:00,515 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:00,517 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:55:00,519 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:00,520 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:00,521 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:00,522 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:00,523 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:00,523 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:00,525 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:00,525 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:00,526 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:00,526 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:55:00,526 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:00,527 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:00,973 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:55:01,979 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:04,011 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:06,020 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:08,025 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:09,834 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:55:09,834 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:55:10,031 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:12,038 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:14,042 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:16,052 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:18,056 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:20,060 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:22,064 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:24,070 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:24,893 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:55:24,893 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:55:26,076 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:28,082 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:30,089 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:30,740 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:55:32,094 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:34,101 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:35,044 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:35,046 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:55:35,050 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:35,050 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:35,052 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:35,053 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:35,054 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:35,055 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:35,057 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:35,057 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:35,060 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:35,060 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:55:35,060 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:55:35,064 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:55:35,109 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:55:36,112 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:38,119 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:39,953 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:55:39,953 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:55:40,126 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:42,135 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:44,139 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:46,145 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:48,149 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:50,153 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:52,157 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:54,162 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:55,009 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:55:55,009 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:55:56,165 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:55:58,172 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:00,176 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:01,974 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:56:02,181 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:04,188 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:06,194 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:08,201 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:10,063 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:56:10,064 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:56:10,210 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:10,580 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:56:10,584 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:56:10,585 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:56:10,588 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:56:11,220 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:56:12,224 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:14,228 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:16,237 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:18,242 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:20,247 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:22,250 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:25,118 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:56:25,119 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:56:26,263 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:28,271 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:30,277 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:32,281 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:33,231 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:56:34,289 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:36,297 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:38,305 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:40,172 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:56:40,172 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:56:40,309 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:42,313 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:44,323 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:45,224 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:56:45,225 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:56:45,227 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:56:45,229 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:56:45,330 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:56:46,333 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:48,347 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:50,357 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:52,364 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:54,369 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:55,234 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:56:55,235 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:56:56,378 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:56:58,382 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:00,386 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:02,393 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:04,401 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:04,489 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:57:06,411 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:08,415 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:10,621 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:57:10,621 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:57:12,424 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:14,430 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:16,436 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:18,441 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:19,004 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:57:19,004 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:19,008 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:19,009 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:19,011 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:19,012 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:19,015 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:19,015 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:19,016 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:19,016 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:19,019 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:19,019 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:57:19,019 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:19,020 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:19,447 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:57:20,454 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:22,467 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:24,475 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:25,674 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:57:25,675 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:57:26,480 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:28,485 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:30,494 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:34,508 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:35,773 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:57:36,509 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:38,514 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:40,518 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:40,766 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:57:40,767 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:57:44,527 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:46,533 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:48,538 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:52,554 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:53,419 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:53,422 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:57:53,423 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:53,423 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:53,424 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:53,424 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:53,426 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:53,426 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:53,427 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:53,428 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:53,429 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:53,429 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:57:53,429 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:57:53,432 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:57:53,558 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:57:54,563 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:55,824 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:57:55,825 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:57:56,574 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:57:58,581 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:00,589 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:02,594 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:04,601 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:06,605 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:07,073 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:58:08,609 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:10,614 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:10,894 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:58:10,894 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:58:12,624 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:14,628 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:18,642 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:20,647 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:22,651 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:26,002 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:58:26,003 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:58:26,662 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:28,028 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:58:28,030 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:58:28,030 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:58:28,032 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:58:28,670 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:28,670 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:58:30,686 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:32,693 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:34,701 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:36,708 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:38,294 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:58:38,711 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:40,717 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:41,053 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:58:41,053 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:58:44,727 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:46,733 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:48,743 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:50,747 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:52,751 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:54,757 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:56,105 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:58:56,106 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:58:56,761 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:58:58,768 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:00,775 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:01,773 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:59:01,774 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:59:01,774 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:59:01,777 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:59:01,780 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:59:02,786 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:04,791 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:06,800 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:08,806 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:09,564 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:59:10,811 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:11,161 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:59:11,161 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:59:12,814 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:14,820 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:16,828 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:18,833 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:20,836 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:22,842 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:24,846 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:26,281 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:59:26,281 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:59:28,855 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:30,860 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:32,866 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:34,869 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 09:59:34,870 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 09:59:34,871 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 09:59:34,872 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 09:59:34,874 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:34,875 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 09:59:36,882 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:38,891 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:40,785 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 09:59:40,898 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:41,338 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:59:41,339 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:59:42,905 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:44,912 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:48,922 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:50,927 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:52,934 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:54,939 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 09:59:56,411 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 09:59:56,412 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 09:59:58,948 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:00,953 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:02,957 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:06,965 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:08,970 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:10,491 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:00:10,492 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:00:10,495 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:00:10,495 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:00:10,496 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:00:10,496 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:00:10,497 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:00:10,498 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:00:10,499 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:00:10,499 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:00:10,500 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:00:10,500 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:00:10,500 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:00:10,502 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:00:10,987 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:10,987 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:00:11,494 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:00:11,495 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:00:12,054 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:00:12,997 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:15,004 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:17,012 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:19,019 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:21,023 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:25,035 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:26,556 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:00:26,556 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:00:27,040 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:29,045 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:33,056 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:35,061 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:37,066 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:41,074 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:41,616 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:00:41,617 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:00:43,081 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:43,237 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:00:45,086 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:45,310 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:00:45,311 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:00:45,312 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:00:45,315 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:00:46,092 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:00:47,097 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:49,104 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:51,108 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:53,113 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:55,120 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:00:56,668 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:00:56,668 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:00:57,123 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:01,133 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:03,139 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:05,144 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:09,156 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:11,160 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:11,718 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:01:11,718 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:01:13,165 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:14,460 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:01:17,178 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:19,184 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:20,784 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:01:20,785 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:01:20,785 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:01:20,788 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:01:21,195 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:21,195 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:01:23,201 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:25,209 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:26,814 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:01:26,814 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:01:27,215 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:29,221 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:31,226 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:37,238 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:39,244 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:41,248 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:41,868 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:01:41,868 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:01:45,256 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:45,673 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:01:47,261 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:49,267 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:53,280 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:55,284 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:56,728 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:01:56,730 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:01:56,731 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:01:56,731 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:01:56,732 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:01:56,733 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:01:56,734 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:01:56,734 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:01:56,735 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:01:56,735 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:01:56,737 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:01:56,738 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:01:56,738 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:01:56,741 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:01:56,934 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:01:56,935 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:01:57,290 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:01:57,290 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:01:59,295 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:01,305 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:03,315 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:05,319 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:07,327 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:11,339 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:12,293 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:02:12,293 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:02:13,345 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:15,352 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:16,977 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:02:17,356 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:21,366 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:23,371 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:25,375 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:27,347 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:02:27,348 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:02:29,388 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:31,265 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:02:31,267 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:02:31,269 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:02:31,270 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:02:31,271 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:02:31,271 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:02:31,273 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:02:31,273 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:02:31,274 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:02:31,274 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:02:31,275 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:02:31,276 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:02:31,276 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:02:31,277 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:02:31,395 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:31,395 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:02:33,402 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:35,417 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:37,432 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:39,435 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:41,439 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:42,406 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:02:42,407 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:02:43,443 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:47,450 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:48,288 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:02:49,456 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:51,460 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:55,471 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:57,468 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:02:57,468 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:02:57,476 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:02:59,482 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:03,494 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:05,504 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:06,671 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:03:06,672 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:03:06,672 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:03:06,675 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:03:07,514 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:07,515 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:03:09,521 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:11,525 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:12,523 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:03:12,523 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:03:13,532 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:15,541 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:17,545 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:19,506 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:03:21,556 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:23,562 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:25,566 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:27,574 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:03:27,575 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:03:29,576 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:31,581 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:33,586 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:35,590 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:39,598 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:40,660 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:03:40,662 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:03:40,663 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:03:40,664 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:03:40,668 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:03:40,668 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:03:40,670 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:03:40,670 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:03:40,672 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:03:40,673 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:03:40,675 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:03:40,676 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:03:40,676 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:03:40,679 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:03:41,609 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:41,610 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:03:42,627 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:03:42,628 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:03:43,621 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:45,628 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:47,633 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:49,639 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:50,760 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:03:51,645 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:53,649 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:57,667 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:03:57,688 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:03:57,688 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:03:59,671 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:01,675 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:05,684 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:07,690 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:09,694 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:12,734 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:04:12,735 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:04:13,704 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:15,559 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:04:15,560 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:04:15,560 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:04:15,562 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:04:15,718 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:15,718 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:04:17,734 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:19,742 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:21,752 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:22,048 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:04:23,760 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:25,766 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:27,771 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:27,794 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:04:27,794 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:04:29,775 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:33,793 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:35,800 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:37,805 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:42,847 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:04:42,847 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:04:43,817 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:45,826 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:47,832 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:51,844 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:52,534 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:04:52,536 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:04:52,537 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:04:52,537 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:04:52,539 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:04:52,539 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:04:52,540 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:04:52,540 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:04:52,541 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:04:52,541 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:04:52,542 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:04:52,542 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:04:52,542 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:04:52,543 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:04:52,847 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:04:53,270 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:04:53,849 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:55,882 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:57,888 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:04:59,893 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:00,808 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:05:00,808 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:05:01,900 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:03,908 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:07,917 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:09,922 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:11,930 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:15,897 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:05:15,897 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:05:17,945 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:19,954 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:21,960 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:24,476 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:05:25,973 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:26,561 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:05:26,562 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:05:26,563 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:05:26,565 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:05:26,981 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:05:27,986 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:29,989 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:30,950 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:05:30,951 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:05:31,996 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:34,006 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:36,011 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:38,017 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:40,020 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:44,031 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:46,005 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:05:46,006 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:05:46,041 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:48,046 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:52,054 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:54,059 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:05:55,708 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:05:56,064 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:00,075 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:01,029 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:06:01,031 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:01,034 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:01,034 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:01,035 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:01,035 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:01,036 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:01,037 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:01,037 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:01,038 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:01,039 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:01,040 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:06:01,040 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:01,041 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:01,078 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:06:01,078 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:06:01,082 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:06:02,087 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:04,093 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:06,101 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:08,111 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:10,118 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:12,123 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:14,127 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:16,133 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:06:16,133 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:06:20,141 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:22,146 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:24,150 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:26,156 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:26,973 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:06:28,162 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:30,166 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:31,231 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:06:31,231 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:06:31,881 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:31,883 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:06:31,884 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:31,884 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:31,886 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:31,886 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:31,887 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:31,887 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:31,888 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:31,888 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:31,889 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:31,890 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:06:31,890 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:06:31,891 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:06:32,175 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:32,176 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:06:34,194 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:36,202 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:38,208 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:40,215 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:42,222 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:44,227 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:46,231 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:46,295 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:06:46,295 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:06:48,235 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:50,243 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:52,248 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:54,253 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:06:58,256 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:06:58,266 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:00,274 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:01,365 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:07:01,366 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:07:02,281 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:04,286 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:06,291 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:07,179 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:07:07,181 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:07:07,183 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:07:07,183 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:07:07,185 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:07:07,185 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:07:07,186 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:07:07,186 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:07:07,187 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:07:07,187 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:07:07,188 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:07:07,188 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:07:07,188 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:07:07,191 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:07:07,297 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:07:08,301 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:10,306 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:12,312 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:14,316 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:16,321 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:16,524 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:07:16,525 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:07:18,325 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:20,331 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:22,336 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:24,341 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:26,346 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:28,354 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:29,504 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:07:30,358 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:31,653 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:07:31,653 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:07:34,370 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:36,376 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:38,379 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:42,393 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:42,631 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:07:42,632 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:07:42,632 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:07:42,635 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:07:43,397 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:07:44,406 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:46,415 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:46,917 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:07:46,918 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:07:48,419 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:50,425 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:52,430 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:54,435 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:07:56,439 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:00,447 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:00,769 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:08:01,983 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:08:01,983 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:08:02,455 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:04,458 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:06,463 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:10,476 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:12,479 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:14,487 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:15,135 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:08:15,136 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:08:15,137 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:08:15,140 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:08:15,493 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:08:16,496 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:17,037 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:08:17,038 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:08:18,506 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:20,512 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:22,530 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:24,536 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:26,540 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:30,547 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:32,019 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:08:32,231 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:08:32,232 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:08:32,553 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:34,557 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:38,569 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:40,573 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:42,576 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:44,583 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:47,283 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:08:47,283 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:08:48,599 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:50,533 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:08:50,535 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:08:50,537 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:08:50,538 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:08:50,540 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:08:50,540 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:08:50,542 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:08:50,543 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:08:50,546 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:08:50,546 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:08:50,547 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:08:50,547 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:08:50,547 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:08:50,549 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:08:50,610 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:50,610 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:08:52,620 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:54,627 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:56,635 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:08:58,641 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:00,644 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:02,343 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:09:02,343 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:09:02,649 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:03,300 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:09:06,657 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:08,663 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:10,667 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:16,679 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:17,397 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:09:17,397 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:09:18,685 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:20,689 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:24,702 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:26,509 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:09:26,510 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:09:26,510 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:09:26,515 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:09:26,714 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:26,714 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:09:28,729 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:30,737 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:32,452 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:09:32,452 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:09:34,544 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:09:34,748 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:36,753 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:38,757 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:42,767 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:44,771 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:46,775 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:47,501 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:09:47,502 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:09:50,789 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:52,794 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:54,797 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:09:58,808 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:00,814 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:01,355 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:10:01,356 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:10:01,356 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:10:01,360 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:10:01,816 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:10:02,576 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:10:02,576 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:10:02,821 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:04,827 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:05,823 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:10:06,834 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:08,842 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:10,846 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:12,849 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:16,857 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:17,659 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:10:17,659 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:10:18,866 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:20,875 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:22,877 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:24,884 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:26,891 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:28,895 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:30,898 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:32,817 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:10:32,818 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:10:34,912 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:35,620 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:10:35,621 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:10:35,623 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:10:35,623 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:10:35,624 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:10:35,624 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:10:35,626 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:10:35,626 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:10:35,629 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:10:35,630 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:10:35,633 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:10:35,634 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:10:35,634 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:10:35,635 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:10:35,916 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:10:36,923 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:37,063 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:10:38,929 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:40,935 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:42,940 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:44,946 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:46,954 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:47,871 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:10:47,872 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:10:48,959 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:52,972 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:54,976 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:56,981 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:10:58,985 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:00,990 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:02,920 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:11:02,920 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:11:02,996 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:07,003 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:08,330 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:11:09,007 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:10,717 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:11:10,718 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:11:10,721 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:11:10,722 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:11:10,724 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:11:10,724 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:11:10,725 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:11:10,726 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:11:10,727 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:11:10,727 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:11:10,730 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:11:10,730 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:11:10,730 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:11:10,733 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:11:11,016 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:11,016 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:11:13,025 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:15,034 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:17,040 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:17,972 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:11:17,973 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:11:19,046 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:21,053 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:23,057 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:25,060 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:27,065 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:29,068 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:31,073 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:33,028 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:11:33,029 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:11:33,079 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:35,085 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:37,089 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:39,092 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:39,603 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:11:41,099 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:43,105 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:44,267 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:11:44,268 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:11:44,269 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:11:44,272 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:11:45,118 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:45,118 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:11:47,124 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:48,079 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:11:48,080 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:11:49,131 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:51,138 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:53,143 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:55,148 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:57,152 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:11:59,156 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:01,162 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:03,155 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:12:03,156 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:12:03,169 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:05,174 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:07,178 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:09,182 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:10,907 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:12:11,189 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:13,196 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:15,203 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:17,209 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:18,212 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:12:18,213 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:12:19,221 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:20,164 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:12:20,166 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:20,169 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:20,169 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:20,170 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:20,171 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:20,172 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:20,172 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:20,175 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:20,175 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:20,178 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:20,178 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:12:20,178 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:20,179 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:20,228 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:12:21,232 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:23,239 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:25,248 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:27,254 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:29,259 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:31,263 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:33,267 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:33,283 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:12:33,284 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:12:35,273 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:37,279 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:39,285 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:41,289 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:42,163 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:12:43,293 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:45,299 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:47,308 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:48,345 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:12:48,345 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:12:49,312 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:51,316 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:55,331 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:55,378 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:55,380 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:12:55,382 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:55,382 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:55,383 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:55,383 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:55,386 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:55,386 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:55,389 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:55,389 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:55,392 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:55,392 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:12:55,392 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:12:55,393 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:12:56,337 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:12:57,339 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:12:59,345 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:01,350 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:03,354 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:03,401 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:13:03,402 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:13:05,359 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:07,365 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:09,369 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:13,379 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:13,395 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:13:15,383 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:17,389 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:18,506 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:13:18,506 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:13:19,393 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:21,397 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:23,401 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:25,408 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:27,415 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:27,804 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:13:27,805 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:13:27,805 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:13:27,808 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:13:28,417 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:13:29,421 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:31,435 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:33,448 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:33,562 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:13:33,563 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:13:35,454 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:37,460 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:39,468 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:44,648 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:13:45,484 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:47,490 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:48,620 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:13:48,620 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:13:49,495 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:53,507 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:55,514 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:13:57,521 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:03,542 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:03,731 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:14:03,731 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:14:04,612 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:14:04,614 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:14:04,615 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:14:04,615 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:14:04,617 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:14:04,617 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:14:04,618 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:14:04,619 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:14:04,620 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:14:04,620 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:14:04,622 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:14:04,623 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:14:04,623 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:14:04,624 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:14:05,555 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:05,556 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:14:07,562 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:09,568 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:11,575 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:13,581 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:15,586 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:15,888 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:14:17,590 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:18,793 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:14:18,794 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:14:21,602 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:23,612 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:25,617 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:27,623 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:31,633 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:33,638 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:33,851 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:14:33,852 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:14:35,646 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:39,655 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:40,768 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:14:40,769 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:14:40,769 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:14:40,772 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:14:41,665 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:41,665 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:14:43,673 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:45,677 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:47,173 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:14:47,684 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:48,911 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:14:48,911 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:14:49,688 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:51,697 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:53,702 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:57,715 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:14:59,722 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:01,728 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:03,998 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:15:03,998 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:15:05,747 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:07,752 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:09,757 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:11,765 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:15,776 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:16,025 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:16,028 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:15:16,029 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:16,029 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:16,031 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:16,031 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:16,032 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:16,032 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:16,034 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:16,034 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:16,036 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:16,037 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:15:16,037 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:16,039 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:16,779 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:15:17,782 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:18,417 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:15:19,209 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:15:19,209 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:15:19,791 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:21,799 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:23,804 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:25,808 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:27,811 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:31,821 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:33,826 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:34,266 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:15:34,267 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:15:35,831 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:37,837 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:39,842 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:41,847 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:43,851 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:45,855 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:49,349 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:15:49,350 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:15:49,631 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:15:49,865 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:50,500 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:50,502 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:15:50,504 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:50,504 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:50,506 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:50,506 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:50,507 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:50,507 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:50,508 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:50,508 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:50,509 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:50,510 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:15:50,510 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:15:50,511 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:15:50,871 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:15:51,878 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:53,886 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:55,892 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:57,898 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:15:59,903 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:01,907 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:02,911 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:04,406 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:16:04,407 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:16:06,920 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:08,925 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:10,931 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:12,935 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:14,939 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:16,944 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:18,949 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:19,464 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:16:19,464 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:16:20,842 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:16:20,953 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:24,967 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:25,538 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:16:25,540 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:16:25,542 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:16:25,542 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:16:25,544 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:16:25,544 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:16:25,545 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:16:25,546 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:16:25,547 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:16:25,547 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:16:25,550 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:16:25,550 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:16:25,550 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:16:25,552 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:16:25,974 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:16:26,975 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:28,988 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:30,994 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:33,000 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:34,522 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:16:34,523 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:16:35,004 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:37,009 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:39,013 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:43,021 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:45,028 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:47,032 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:49,574 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:16:49,575 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:16:51,041 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:52,068 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:16:53,047 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:16:55,056 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:01,068 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:01,780 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:17:01,781 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:17:01,782 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:17:01,784 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:17:02,073 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:17:03,075 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:04,635 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:17:04,635 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:17:05,080 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:07,087 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:09,092 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:11,097 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:13,104 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:17,112 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:19,118 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:19,686 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:17:19,686 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:17:21,122 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:23,128 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:23,315 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:17:27,139 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:29,144 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:31,150 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:32,588 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:17:32,590 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:17:32,590 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:17:32,593 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:17:33,166 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:33,167 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:17:34,743 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:17:34,743 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:17:35,173 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:37,186 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:39,190 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:41,195 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:43,204 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:45,205 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:47,210 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:49,215 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:49,794 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:17:49,795 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:17:51,219 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:53,224 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:54,608 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:17:55,228 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:57,234 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:17:59,240 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:01,246 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:04,860 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:18:04,860 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:18:05,258 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:05,766 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:18:05,768 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:05,772 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:05,772 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:05,773 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:05,773 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:05,775 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:05,776 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:05,777 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:05,777 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:05,779 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:05,780 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:18:05,780 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:05,781 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:06,262 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:18:07,267 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:09,272 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:11,278 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:13,284 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:15,289 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:17,295 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:19,303 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:19,920 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:18:19,920 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:18:23,314 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:25,319 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:25,925 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:18:27,326 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:29,332 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:31,337 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:33,344 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:34,983 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:18:34,983 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:18:35,348 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:37,353 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:39,357 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:40,270 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:40,272 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:18:40,274 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:40,274 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:40,275 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:40,275 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:40,276 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:40,277 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:40,278 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:40,278 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:40,279 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:40,279 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:18:40,280 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:18:40,281 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:18:40,369 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:18:41,372 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:43,380 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:45,385 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:47,392 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:49,399 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:50,037 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:18:50,037 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:18:51,404 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:53,411 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:55,416 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:57,200 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:18:57,421 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:18:59,426 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:01,432 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:03,440 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:05,093 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:19:05,093 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:19:05,446 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:07,451 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:09,456 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:11,461 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:13,466 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:14,168 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:19:14,170 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:19:14,171 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:19:14,171 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:19:14,173 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:19:14,173 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:19:14,174 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:19:14,175 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:19:14,176 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:19:14,176 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:19:14,177 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:19:14,177 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:19:14,178 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:19:14,179 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:19:14,471 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:19:15,474 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:17,485 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:19,492 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:20,181 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: stop_status +2023-03-10 10:19:20,181 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: stop_status +2023-03-10 10:19:21,497 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:23,508 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:25,512 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:26,445 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: log_artifact +2023-03-10 10:19:26,445 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: log_artifact +2023-03-10 10:19:26,515 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_f87c5fde5c980e56f5ac.jpg +2023-03-10 10:19:26,515 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_fed7a303bf60ffe0aa22.jpg +2023-03-10 10:19:26,515 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_7c62560c618390788cd1.jpg +2023-03-10 10:19:26,516 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_e3817cfcedad6311c596.jpg +2023-03-10 10:19:26,516 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_aacb7bbfdb285aeb334c.jpg +2023-03-10 10:19:26,516 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_e16b7c341951b4665676.jpg +2023-03-10 10:19:26,516 INFO Thread-7 :103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images +2023-03-10 10:19:26,868 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: partial_history +2023-03-10 10:19:27,518 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_a1f9aef70a86123584aa.png +2023-03-10 10:19:27,518 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_3aacbde9f4ccdc6ffcb2.png +2023-03-10 10:19:27,519 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_4ccc897b8b45ac9f81a4.png +2023-03-10 10:19:27,519 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_4a81e87d45c2ecf01b25.png +2023-03-10 10:19:27,519 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png +2023-03-10 10:19:27,519 INFO Thread-7 :103541 [dir_watcher.py:_on_file_created():213] file/dir created: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_6b457a729b9febfbe76b.png +2023-03-10 10:19:28,175 INFO Thread-18 :103541 [upload_job.py:push():95] Uploaded file /home/akhot2/.cache/wandb/artifacts/obj/md5/9b/45a7762ec99a695318f0926fac5404 +2023-03-10 10:19:28,784 INFO SenderThread:103541 [sender.py:send_request_log_artifact():1001] logged artifact run_c6nn9q90_model - {'id': 'QXJ0aWZhY3Q6MzkzNTMwMjYy', 'digest': 'f48541d2736a9c097ee76a3fb8909680', 'state': 'PENDING', 'aliases': [], 'artifactSequence': {'id': 'QXJ0aWZhY3RDb2xsZWN0aW9uOjU2NjA2NDgx', 'latestArtifact': None}, 'version': 'latest'} +2023-03-10 10:19:28,785 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,785 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Validation_50_f87c5fde5c980e56f5ac.jpg with policy now +2023-03-10 10:19:28,785 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,785 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Validation_50_aacb7bbfdb285aeb334c.jpg with policy now +2023-03-10 10:19:28,786 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,786 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Validation_50_fed7a303bf60ffe0aa22.jpg with policy now +2023-03-10 10:19:28,786 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,786 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Validation_50_e16b7c341951b4665676.jpg with policy now +2023-03-10 10:19:28,787 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,787 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Validation_50_e3817cfcedad6311c596.jpg with policy now +2023-03-10 10:19:28,787 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,787 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Validation_50_7c62560c618390788cd1.jpg with policy now +2023-03-10 10:19:28,790 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,790 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Results_50_6b457a729b9febfbe76b.png with policy now +2023-03-10 10:19:28,791 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,791 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Results_50_1919cd7ca3699dbfdb9c.png with policy now +2023-03-10 10:19:28,793 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,794 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Results_50_4ccc897b8b45ac9f81a4.png with policy now +2023-03-10 10:19:28,794 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,794 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Results_50_3aacbde9f4ccdc6ffcb2.png with policy now +2023-03-10 10:19:28,798 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,798 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Results_50_a1f9aef70a86123584aa.png with policy now +2023-03-10 10:19:28,802 DEBUG SenderThread:103541 [sender.py:send():232] send: files +2023-03-10 10:19:28,802 INFO SenderThread:103541 [sender.py:_save_file():946] saving file media/images/Results_50_4a81e87d45c2ecf01b25.png with policy now +2023-03-10 10:19:28,802 DEBUG SenderThread:103541 [sender.py:send():232] send: history +2023-03-10 10:19:28,803 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:19:28,806 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:19:28,806 DEBUG SenderThread:103541 [sender.py:send():232] send: telemetry +2023-03-10 10:19:28,806 DEBUG SenderThread:103541 [sender.py:send():232] send: telemetry +2023-03-10 10:19:28,806 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:19:29,012 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-10 10:19:29,012 DEBUG SenderThread:103541 [sender.py:send():232] send: exit +2023-03-10 10:19:29,013 INFO SenderThread:103541 [sender.py:send_exit():368] handling exit code: 0 +2023-03-10 10:19:29,013 INFO SenderThread:103541 [sender.py:send_exit():370] handling runtime: 1783 +2023-03-10 10:19:29,014 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:19:29,014 INFO SenderThread:103541 [sender.py:send_exit():376] send defer +2023-03-10 10:19:29,014 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: poll_exit +2023-03-10 10:19:29,015 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: defer +2023-03-10 10:19:29,015 INFO HandlerThread:103541 [handler.py:handle_request_defer():164] handle defer: 0 +2023-03-10 10:19:29,015 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: defer +2023-03-10 10:19:29,015 INFO SenderThread:103541 [sender.py:send_request_defer():385] handle sender defer: 0 +2023-03-10 10:19:29,015 INFO SenderThread:103541 [sender.py:transition_state():389] send defer: 1 +2023-03-10 10:19:29,015 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: defer +2023-03-10 10:19:29,015 INFO HandlerThread:103541 [handler.py:handle_request_defer():164] handle defer: 1 +2023-03-10 10:19:29,123 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-10 10:19:29,123 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: defer +2023-03-10 10:19:29,124 INFO SenderThread:103541 [sender.py:send_request_defer():385] handle sender defer: 1 +2023-03-10 10:19:29,124 INFO SenderThread:103541 [sender.py:transition_state():389] send defer: 2 +2023-03-10 10:19:29,124 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: poll_exit +2023-03-10 10:19:29,124 DEBUG SenderThread:103541 [sender.py:send():232] send: stats +2023-03-10 10:19:29,124 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: defer +2023-03-10 10:19:29,124 INFO HandlerThread:103541 [handler.py:handle_request_defer():164] handle defer: 2 +2023-03-10 10:19:29,124 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: defer +2023-03-10 10:19:29,125 INFO SenderThread:103541 [sender.py:send_request_defer():385] handle sender defer: 2 +2023-03-10 10:19:29,125 INFO SenderThread:103541 [sender.py:transition_state():389] send defer: 3 +2023-03-10 10:19:29,125 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: defer +2023-03-10 10:19:29,125 INFO HandlerThread:103541 [handler.py:handle_request_defer():164] handle defer: 3 +2023-03-10 10:19:29,125 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: defer +2023-03-10 10:19:29,125 INFO SenderThread:103541 [sender.py:send_request_defer():385] handle sender defer: 3 +2023-03-10 10:19:29,125 INFO SenderThread:103541 [sender.py:transition_state():389] send defer: 4 +2023-03-10 10:19:29,125 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: defer +2023-03-10 10:19:29,125 INFO HandlerThread:103541 [handler.py:handle_request_defer():164] handle defer: 4 +2023-03-10 10:19:29,125 DEBUG SenderThread:103541 [sender.py:send():232] send: summary +2023-03-10 10:19:29,127 INFO SenderThread:103541 [sender.py:_save_file():946] saving file wandb-summary.json with policy end +2023-03-10 10:19:29,127 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: defer +2023-03-10 10:19:29,127 INFO SenderThread:103541 [sender.py:send_request_defer():385] handle sender defer: 4 +2023-03-10 10:19:29,127 INFO SenderThread:103541 [sender.py:transition_state():389] send defer: 5 +2023-03-10 10:19:29,127 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: defer +2023-03-10 10:19:29,127 INFO HandlerThread:103541 [handler.py:handle_request_defer():164] handle defer: 5 +2023-03-10 10:19:29,127 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: defer +2023-03-10 10:19:29,127 INFO SenderThread:103541 [sender.py:send_request_defer():385] handle sender defer: 5 +2023-03-10 10:19:29,158 INFO Thread-20 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/3qh9cxkl-media/images/Validation_50_aacb7bbfdb285aeb334c.jpg +2023-03-10 10:19:29,168 INFO Thread-25 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/3vugouj3-media/images/Results_50_6b457a729b9febfbe76b.png +2023-03-10 10:19:29,169 INFO Thread-23 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/ejzu6kia-media/images/Validation_50_e3817cfcedad6311c596.jpg +2023-03-10 10:19:29,187 INFO Thread-26 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/1t256lqh-media/images/Results_50_1919cd7ca3699dbfdb9c.png +2023-03-10 10:19:29,192 INFO Thread-30 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/6fib2qde-media/images/Results_50_4a81e87d45c2ecf01b25.png +2023-03-10 10:19:29,196 INFO Thread-29 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/2vr12crr-media/images/Results_50_a1f9aef70a86123584aa.png +2023-03-10 10:19:29,197 INFO Thread-22 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/mbizjz9o-media/images/Validation_50_e16b7c341951b4665676.jpg +2023-03-10 10:19:29,204 INFO Thread-27 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/3onl25vg-media/images/Results_50_4ccc897b8b45ac9f81a4.png +2023-03-10 10:19:29,225 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-10 10:19:29,238 INFO SenderThread:103541 [sender.py:transition_state():389] send defer: 6 +2023-03-10 10:19:29,238 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: poll_exit +2023-03-10 10:19:29,238 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: defer +2023-03-10 10:19:29,239 INFO HandlerThread:103541 [handler.py:handle_request_defer():164] handle defer: 6 +2023-03-10 10:19:29,239 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: defer +2023-03-10 10:19:29,239 INFO SenderThread:103541 [sender.py:send_request_defer():385] handle sender defer: 6 +2023-03-10 10:19:29,239 INFO SenderThread:103541 [dir_watcher.py:finish():279] shutting down directory watcher +2023-03-10 10:19:29,270 INFO Thread-21 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/27qyga7i-media/images/Validation_50_fed7a303bf60ffe0aa22.jpg +2023-03-10 10:19:29,339 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-10 10:19:29,369 INFO Thread-24 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/36co79gb-media/images/Validation_50_7c62560c618390788cd1.jpg +2023-03-10 10:19:29,384 INFO Thread-19 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/bn0f8ziq-media/images/Validation_50_f87c5fde5c980e56f5ac.jpg +2023-03-10 10:19:29,523 INFO SenderThread:103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:29,523 INFO SenderThread:103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:19:29,523 INFO SenderThread:103541 [dir_watcher.py:_on_file_modified():226] file/dir modified: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/config.yaml +2023-03-10 10:19:29,523 INFO SenderThread:103541 [dir_watcher.py:finish():309] scan: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files +2023-03-10 10:19:29,524 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log output.log +2023-03-10 10:19:29,524 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/requirements.txt requirements.txt +2023-03-10 10:19:29,524 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/config.yaml config.yaml +2023-03-10 10:19:29,526 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-metadata.json wandb-metadata.json +2023-03-10 10:19:29,529 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/conda-environment.yaml conda-environment.yaml +2023-03-10 10:19:29,531 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json wandb-summary.json +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_4ccc897b8b45ac9f81a4.png media/images/Results_50_4ccc897b8b45ac9f81a4.png +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_045960e3d5da99ba8de1.jpg media/images/Mosaics_0_045960e3d5da99ba8de1.jpg +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_7c62560c618390788cd1.jpg media/images/Validation_50_7c62560c618390788cd1.jpg +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Labels_0_8d76b87e3d38a1bd9683.jpg media/images/Labels_0_8d76b87e3d38a1bd9683.jpg +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_4a81e87d45c2ecf01b25.png media/images/Results_50_4a81e87d45c2ecf01b25.png +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Labels_0_5811121eb1515a1b3bbc.jpg media/images/Labels_0_5811121eb1515a1b3bbc.jpg +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_3aacbde9f4ccdc6ffcb2.png media/images/Results_50_3aacbde9f4ccdc6ffcb2.png +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_e16b7c341951b4665676.jpg media/images/Validation_50_e16b7c341951b4665676.jpg +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_f87c5fde5c980e56f5ac.jpg media/images/Validation_50_f87c5fde5c980e56f5ac.jpg +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_a1f9aef70a86123584aa.png media/images/Results_50_a1f9aef70a86123584aa.png +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_f26e1830b98e0a6fa4f2.jpg media/images/Mosaics_0_f26e1830b98e0a6fa4f2.jpg +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_1919cd7ca3699dbfdb9c.png media/images/Results_50_1919cd7ca3699dbfdb9c.png +2023-03-10 10:19:29,537 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_fed7a303bf60ffe0aa22.jpg media/images/Validation_50_fed7a303bf60ffe0aa22.jpg +2023-03-10 10:19:29,538 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_aacb7bbfdb285aeb334c.jpg media/images/Validation_50_aacb7bbfdb285aeb334c.jpg +2023-03-10 10:19:29,538 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Validation_50_e3817cfcedad6311c596.jpg media/images/Validation_50_e3817cfcedad6311c596.jpg +2023-03-10 10:19:29,538 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Mosaics_0_ad9fe6a9be92b421451e.jpg media/images/Mosaics_0_ad9fe6a9be92b421451e.jpg +2023-03-10 10:19:29,538 INFO SenderThread:103541 [dir_watcher.py:finish():323] scan save: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/media/images/Results_50_6b457a729b9febfbe76b.png media/images/Results_50_6b457a729b9febfbe76b.png +2023-03-10 10:19:29,538 INFO SenderThread:103541 [sender.py:transition_state():389] send defer: 7 +2023-03-10 10:19:29,538 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: poll_exit +2023-03-10 10:19:29,538 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: defer +2023-03-10 10:19:29,538 INFO HandlerThread:103541 [handler.py:handle_request_defer():164] handle defer: 7 +2023-03-10 10:19:29,538 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: defer +2023-03-10 10:19:29,538 INFO SenderThread:103541 [sender.py:send_request_defer():385] handle sender defer: 7 +2023-03-10 10:19:29,539 INFO SenderThread:103541 [file_pusher.py:finish():145] shutting down file pusher +2023-03-10 10:19:29,639 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-10 10:19:29,639 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: poll_exit +2023-03-10 10:19:29,739 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-10 10:19:29,740 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: poll_exit +2023-03-10 10:19:29,791 INFO Thread-28 :103541 [upload_job.py:push():137] Uploaded file /tmp/tmpklqaogeewandb/4x429dkv-media/images/Results_50_3aacbde9f4ccdc6ffcb2.png +2023-03-10 10:19:29,840 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-10 10:19:29,840 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: poll_exit +2023-03-10 10:19:29,877 INFO Thread-31 :103541 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/output.log +2023-03-10 10:19:29,880 INFO Thread-33 :103541 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/config.yaml +2023-03-10 10:19:29,883 INFO Thread-34 :103541 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/conda-environment.yaml +2023-03-10 10:19:29,886 INFO Thread-35 :103541 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/wandb-summary.json +2023-03-10 10:19:29,903 INFO Thread-32 :103541 [upload_job.py:push():137] Uploaded file /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/files/requirements.txt +2023-03-10 10:19:29,941 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-10 10:19:29,941 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: poll_exit +2023-03-10 10:19:30,042 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-10 10:19:30,042 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: poll_exit +2023-03-10 10:19:30,103 INFO Thread-6 :103541 [sender.py:transition_state():389] send defer: 8 +2023-03-10 10:19:30,104 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: defer +2023-03-10 10:19:30,104 INFO HandlerThread:103541 [handler.py:handle_request_defer():164] handle defer: 8 +2023-03-10 10:19:30,104 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: defer +2023-03-10 10:19:30,104 INFO SenderThread:103541 [sender.py:send_request_defer():385] handle sender defer: 8 +2023-03-10 10:19:30,143 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-10 10:19:30,475 INFO SenderThread:103541 [sender.py:transition_state():389] send defer: 9 +2023-03-10 10:19:30,475 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: poll_exit +2023-03-10 10:19:30,476 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: defer +2023-03-10 10:19:30,476 INFO HandlerThread:103541 [handler.py:handle_request_defer():164] handle defer: 9 +2023-03-10 10:19:30,476 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: defer +2023-03-10 10:19:30,476 INFO SenderThread:103541 [sender.py:send_request_defer():385] handle sender defer: 9 +2023-03-10 10:19:30,476 INFO SenderThread:103541 [sender.py:transition_state():389] send defer: 10 +2023-03-10 10:19:30,476 DEBUG SenderThread:103541 [sender.py:send():232] send: final +2023-03-10 10:19:30,476 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: defer +2023-03-10 10:19:30,476 DEBUG SenderThread:103541 [sender.py:send():232] send: footer +2023-03-10 10:19:30,476 INFO HandlerThread:103541 [handler.py:handle_request_defer():164] handle defer: 10 +2023-03-10 10:19:30,477 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: defer +2023-03-10 10:19:30,477 INFO SenderThread:103541 [sender.py:send_request_defer():385] handle sender defer: 10 +2023-03-10 10:19:30,576 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: poll_exit +2023-03-10 10:19:30,576 DEBUG SenderThread:103541 [sender.py:send_request():246] send_request: poll_exit +2023-03-10 10:19:30,576 INFO SenderThread:103541 [file_pusher.py:join():150] waiting for file pusher +2023-03-10 10:19:30,723 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: sampled_history +2023-03-10 10:19:30,725 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: get_summary +2023-03-10 10:19:30,725 DEBUG HandlerThread:103541 [handler.py:handle_request():141] handle_request: shutdown +2023-03-10 10:19:30,725 INFO HandlerThread:103541 [handler.py:finish():806] shutting down handler +2023-03-10 10:19:31,476 INFO WriterThread:103541 [datastore.py:close():279] close: /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/run-c6nn9q90.wandb +2023-03-10 10:19:31,622 INFO SenderThread:103541 [sender.py:finish():1106] shutting down sender +2023-03-10 10:19:31,622 INFO SenderThread:103541 [file_pusher.py:finish():145] shutting down file pusher +2023-03-10 10:19:31,623 INFO SenderThread:103541 [file_pusher.py:join():150] waiting for file pusher +2023-03-10 10:19:31,665 INFO MainThread:103541 [internal.py:handle_exit():80] Internal process exited diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/logs/debug.log b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/logs/debug.log new file mode 100644 index 0000000000000000000000000000000000000000..87002b61c0fca0bb12474d0f2b7bcb8a8a8b4cdb --- /dev/null +++ b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/logs/debug.log @@ -0,0 +1,147 @@ +2023-03-10 09:49:44,318 INFO MainThread:102616 [wandb_setup.py:_flush():75] Loading settings from /home/akhot2/.config/wandb/settings +2023-03-10 09:49:44,318 INFO MainThread:102616 [wandb_setup.py:_flush():75] Loading settings from /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/settings +2023-03-10 09:49:44,318 INFO MainThread:102616 [wandb_setup.py:_flush():75] Loading settings from environment variables: {} +2023-03-10 09:49:44,318 INFO MainThread:102616 [wandb_setup.py:_flush():75] Inferring run settings from compute environment: {'program_relpath': 'yolov5_model/train.py', 'program': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/train.py'} +2023-03-10 09:49:44,318 INFO MainThread:102616 [wandb_setup.py:_flush():75] Applying login settings: {'login_timeout': 30} +2023-03-10 09:49:44,318 INFO MainThread:102616 [wandb_init.py:_log_setup():437] Logging user logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/logs/debug.log +2023-03-10 09:49:44,318 INFO MainThread:102616 [wandb_init.py:_log_setup():438] Logging internal logs to /projects/akhot2/group-01-phys371-sp2023/yolov5_model/wandb/run-20230310_094944-c6nn9q90/logs/debug-internal.log +2023-03-10 09:49:44,319 INFO MainThread:102616 [wandb_init.py:init():471] calling init triggers +2023-03-10 09:49:44,319 INFO MainThread:102616 [wandb_init.py:init():474] wandb.init called with sweep_config: {} +config: {'weights': 'yolov5m.pt', 'cfg': '', 'data': '/projects/akhot2/group-01-phys371-sp2023/yolov5_model/data/beetles.yaml', 'hyp': {'lr0': 0.01, 'lrf': 0.01, 'momentum': 0.937, 'weight_decay': 0.0005, 'warmup_epochs': 3.0, 'warmup_momentum': 0.8, 'warmup_bias_lr': 0.1, 'box': 0.05, 'cls': 0.5, 'cls_pw': 1.0, 'obj': 1.0, 'obj_pw': 1.0, 'iou_t': 0.2, 'anchor_t': 4.0, 'fl_gamma': 0.0, 'hsv_h': 0.015, 'hsv_s': 0.7, 'hsv_v': 0.4, 'degrees': 0.0, 'translate': 0.1, 'scale': 0.5, 'shear': 0.0, 'perspective': 0.0, 'flipud': 0.0, 'fliplr': 0.5, 'mosaic': 1.0, 'mixup': 0.0, 'copy_paste': 0.0}, 'epochs': 50, 'batch_size': 16, 'imgsz': 1280, 'rect': False, 'resume': False, 'nosave': False, 'noval': False, 'noautoanchor': False, 'noplots': False, 'evolve': None, 'bucket': '', 'cache': None, 'image_weights': False, 'device': '', 'multi_scale': False, 'single_cls': False, 'optimizer': 'SGD', 'sync_bn': False, 'workers': 30, 'project': 'runs/train', 'name': '6beetle_7-non_3dirt_bkg_over', 'exist_ok': False, 'quad': False, 'cos_lr': False, 'label_smoothing': 0.0, 'patience': 100, 'freeze': [0], 'save_period': -1, 'seed': 0, 'local_rank': -1, 'entity': None, 'upload_dataset': False, 'bbox_interval': -1, 'artifact_alias': 'latest', 'save_dir': 'runs/train/6beetle_7-non_3dirt_bkg_over'} +2023-03-10 09:49:44,319 INFO MainThread:102616 [wandb_init.py:init():524] starting backend +2023-03-10 09:49:44,319 INFO MainThread:102616 [backend.py:_multiprocessing_setup():97] multiprocessing start_methods=fork,spawn,forkserver, using: spawn +2023-03-10 09:49:44,333 INFO MainThread:102616 [backend.py:ensure_launched():217] starting backend process... +2023-03-10 09:49:44,343 INFO MainThread:102616 [backend.py:ensure_launched():222] started backend process with pid: 103541 +2023-03-10 09:49:44,344 INFO MainThread:102616 [wandb_init.py:init():533] backend started and connected +2023-03-10 09:49:44,349 INFO MainThread:102616 [wandb_init.py:init():597] updated telemetry +2023-03-10 09:49:44,379 INFO MainThread:102616 [wandb_init.py:init():628] communicating run to backend with 30 second timeout +2023-03-10 09:49:45,758 INFO MainThread:102616 [wandb_run.py:_on_init():1923] communicating current version +2023-03-10 09:49:45,798 INFO MainThread:102616 [wandb_run.py:_on_init():1927] got version response upgrade_message: "wandb version 0.13.11 is available! To upgrade, please run:\n $ pip install wandb --upgrade" + +2023-03-10 09:49:45,798 INFO MainThread:102616 [wandb_init.py:init():659] starting run threads in backend +2023-03-10 09:49:50,802 INFO MainThread:102616 [wandb_run.py:_console_start():1897] atexit reg +2023-03-10 09:49:50,804 INFO MainThread:102616 [wandb_run.py:_redirect():1770] redirect: SettingsConsole.REDIRECT +2023-03-10 09:49:50,804 INFO MainThread:102616 [wandb_run.py:_redirect():1775] Redirecting console. +2023-03-10 09:49:50,805 INFO MainThread:102616 [wandb_run.py:_redirect():1831] Redirects installed. +2023-03-10 09:49:50,805 INFO MainThread:102616 [wandb_init.py:init():684] run started, returning control to user process +2023-03-10 10:19:26,868 INFO MainThread:102616 [wandb_run.py:_finish():1685] finishing run akhot2/YOLOv5/c6nn9q90 +2023-03-10 10:19:26,868 INFO MainThread:102616 [wandb_run.py:_atexit_cleanup():1866] got exitcode: 0 +2023-03-10 10:19:26,871 INFO MainThread:102616 [wandb_run.py:_restore():1838] restore +2023-03-10 10:19:29,015 INFO MainThread:102616 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47596591 + total_bytes: 48167840 +} + +2023-03-10 10:19:29,124 INFO MainThread:102616 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 47645743 + total_bytes: 48167840 +} + +2023-03-10 10:19:29,239 INFO MainThread:102616 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 1 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 48093034 + total_bytes: 48167840 +} + +2023-03-10 10:19:29,538 INFO MainThread:102616 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 48167840 + total_bytes: 48280509 +} + +2023-03-10 10:19:29,639 INFO MainThread:102616 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 48276718 + total_bytes: 48280509 +} + +2023-03-10 10:19:29,740 INFO MainThread:102616 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 48280509 + total_bytes: 48280509 +} + +2023-03-10 10:19:29,841 INFO MainThread:102616 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 48280509 + total_bytes: 48280509 +} + +2023-03-10 10:19:29,942 INFO MainThread:102616 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 48280509 + total_bytes: 48280509 +} + +2023-03-10 10:19:30,042 INFO MainThread:102616 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 48280509 + total_bytes: 48280509 +} + +2023-03-10 10:19:30,476 INFO MainThread:102616 [wandb_run.py:_on_finish():1995] got exit ret: file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 48280509 + total_bytes: 48280509 +} + +2023-03-10 10:19:30,622 INFO MainThread:102616 [wandb_run.py:_on_finish():1995] got exit ret: done: true +exit_result { +} +file_counts { + wandb_count: 6 + media_count: 17 + artifact_count: 1 +} +pusher_stats { + uploaded_bytes: 48280509 + total_bytes: 48280509 +} +local_info { +} + +2023-03-10 10:19:32,297 INFO MainThread:102616 [wandb_run.py:_footer_history_summary_info():3102] rendering history +2023-03-10 10:19:32,298 INFO MainThread:102616 [wandb_run.py:_footer_history_summary_info():3134] rendering summary +2023-03-10 10:19:32,299 INFO MainThread:102616 [wandb_run.py:_footer_sync_info():3057] logging synced files diff --git a/yolov5_model/wandb/run-20230310_094944-c6nn9q90/run-c6nn9q90.wandb b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/run-c6nn9q90.wandb new file mode 100644 index 0000000000000000000000000000000000000000..7884f8ff94eb67fea0748f05628e0791ea1dde90 Binary files /dev/null and b/yolov5_model/wandb/run-20230310_094944-c6nn9q90/run-c6nn9q90.wandb differ diff --git a/yolov5_model/yolov5n.pt b/yolov5_model/yolov5n.pt new file mode 100644 index 0000000000000000000000000000000000000000..ba7335c42adf93aefc11e0e86b0cdfbb188726cb Binary files /dev/null and b/yolov5_model/yolov5n.pt differ diff --git a/yolov5_model/yolov5s.pt b/yolov5_model/yolov5s.pt new file mode 100644 index 0000000000000000000000000000000000000000..841108fcf4b58c494daa9d1d249cc1e48b021866 Binary files /dev/null and b/yolov5_model/yolov5s.pt differ