{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Using device: cpu\n" ] } ], "source": [ "import torch\n", "import torch.nn as nn\n", "import torch.optim as optim\n", "import torch.nn.functional as F\n", "import torchvision\n", "import torchvision.transforms as transforms\n", "from torch.utils.data import DataLoader, Dataset\n", "from tqdm.auto import tqdm, trange\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "import random\n", "import copy\n", "import os\n", "import requests\n", "import io\n", "from PIL import (\n", " Image,\n", ")\n", "\n", "torch.backends.cudnn.deterministic = True\n", "torch.backends.cudnn.benchmark = False\n", "\n", "# Device configuration\n", "if torch.cuda.is_available():\n", " device = torch.device(\"cuda\")\n", "elif torch.backends.mps.is_available():\n", " device = torch.device(\"mps\")\n", "else:\n", " device = torch.device(\"cpu\")\n", "print(f\"Using device: {device}\")\n", "\n", "SEED = 1337\n", "random.seed(SEED)\n", "np.random.seed(SEED)\n", "torch.manual_seed(SEED)\n", "if torch.cuda.is_available():\n", " torch.cuda.manual_seed(SEED)\n", " torch.cuda.manual_seed_all(SEED)\n" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Configuration loaded.\n", " Trigger Position (Top-Left): y=24, x=1\n" ] } ], "source": [ "# Dataset constants\n", "IMG_SIZE = 28 # MNIST image size\n", "NUM_CLASSES = 10\n", "# MNIST specific normalization constants (used by evaluator)\n", "MNIST_MEAN = (0.1307,)\n", "MNIST_STD = (0.3081,)\n", "\n", "# Attack Parameters\n", "SOURCE_CLASS = 7\n", "TARGET_CLASS = 1\n", "POISON_RATE = 0.10 # Poison 10% of the source class images\n", "\n", "# Trigger Definition\n", "TRIGGER_SIZE = 3\n", "\n", "# y: starts at IMG_SIZE - TRIGGER_SIZE - 1 = 28 - 3 - 1 = 24\n", "# x: starts at 1 (0 is edge, 1 is one pixel in)\n", "TRIGGER_POS = (24, 1)\n", "TRIGGER_VAL = 1.0 # Value to set trigger pixels to (white)\n", "\n", "# Training Hyperparameters\n", "LEARNING_RATE = 0.001\n", "NUM_EPOCHS = 5 # Adjust as needed, 5 is often enough for MNIST backdoor\n", "BATCH_SIZE = 128\n", "WEIGHT_DECAY = 1e-4\n", "\n", "# Evaluator API Endpoint\n", "EVALUATOR_URL = \"http://154.57.164.80:30519/evaluate\" # Replace with actual URL\n", "\n", "print(\"Configuration loaded.\")\n", "print(\n", " f\" Trigger Position (Top-Left): y={TRIGGER_POS[0]}, x={TRIGGER_POS[1]}\"\n", ") # Verify your position\n" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "MNIST raw training set loaded. Size: 60000\n", "First train image shape: torch.Size([1, 28, 28]), Label: 5\n", "MNIST clean transformed test set loaded. Size: 10000\n", "First test image shape: torch.Size([1, 28, 28]), Label: 7\n", "Clean test loader created.\n" ] } ], "source": [ "# Define transform_base (includes ToTensor)\n", "transform_base = transforms.Compose(\n", " [transforms.ToTensor()] # Converts PIL Image [0, 255] to Tensor [0, 1] (CxHxW)\n", ")\n", "\n", "# Define transform_norm (includes Normalize using MNIST_MEAN, MNIST_STD)\n", "transform_norm = transforms.Compose([transforms.Normalize(MNIST_MEAN, MNIST_STD)])\n", "\n", "# Load the MNIST training and test datasets\n", "# Raw training set (only ToTensor) for poisoning logic\n", "trainset_clean_raw = torchvision.datasets.MNIST(\n", " root=\"./data\", train=True, download=True, transform=transform_base\n", ")\n", "\n", "# Raw test set (only ToTensor) needed for TriggeredMNISTTest input\n", "testset_clean_raw = torchvision.datasets.MNIST(\n", " root=\"./data\", train=False, download=True, transform=transform_base\n", ")\n", "\n", "# Fully transformed clean test set for CA evaluation\n", "testset_clean_transformed = torchvision.datasets.MNIST(\n", " root=\"./data\",\n", " train=False,\n", " download=True,\n", " transform=transforms.Compose([transform_base, transform_norm]),\n", ")\n", "\n", "# Create a DataLoader for the clean test set for later evaluation\n", "testloader_clean = DataLoader(\n", " testset_clean_transformed,\n", " batch_size=BATCH_SIZE * 2, # Can use larger batch for eval\n", " shuffle=False,\n", " num_workers=0,\n", ")\n", "\n", "# Check\n", "if trainset_clean_raw:\n", " print(f\"MNIST raw training set loaded. Size: {len(trainset_clean_raw)}\")\n", " img, label = trainset_clean_raw[0]\n", " print(\n", " f\"First train image shape: {img.shape}, Label: {label}\"\n", " ) # Should be [1, 28, 28]\n", "if testset_clean_transformed:\n", " print(\n", " f\"MNIST clean transformed test set loaded. Size: {len(testset_clean_transformed)}\"\n", " )\n", " img, label = testset_clean_transformed[0]\n", " print(f\"First test image shape: {img.shape}, Label: {label}\")\n", "if testloader_clean:\n", " print(f\"Clean test loader created.\")\n" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "def add_trigger(image_tensor):\n", " \"\"\"\n", " Adds the predefined trigger pattern to a single MNIST image tensor.\n", " Input tensor expected shape [1, 28, 28] and range [0, 1].\n", "\n", " Args:\n", " image_tensor (torch.Tensor): A single image tensor.\n", "\n", " Returns:\n", " torch.Tensor: The image tensor with the trigger pattern applied.\n", " \"\"\"\n", " c, h, w = image_tensor.shape\n", " start_y, start_x = TRIGGER_POS\n", "\n", " # Defensive check for dimensions\n", " if h != IMG_SIZE or w != IMG_SIZE:\n", " print(f\"Warning: add_trigger received tensor of unexpected size {h}x{w}.\")\n", " return image_tensor # Return original if size mismatch\n", "\n", " # Implement the logic to modify the image_tensor\n", " # Calculate end coordinates, ensuring they don't exceed bounds\n", " end_y = min(start_y + TRIGGER_SIZE, h)\n", " end_x = min(start_x + TRIGGER_SIZE, w)\n", "\n", " # Apply the trigger value to the specified patch\n", " # Slicing is [channel, height_slice, width_slice]\n", " image_tensor[0, start_y:end_y, start_x:end_x] = TRIGGER_VAL\n", "\n", " return image_tensor" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Initializing PoisonedMNISTTrain dataset...\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "50a273ec92ac4bffaadaca54cf4737c0", "version_major": 2, "version_minor": 0 }, "text/plain": [ "Finding source samples: 0%| | 0/60000 [00:00 0:\n", " epoch_loss = running_loss / num_valid_samples_epoch\n", " epoch_losses.append(epoch_loss)\n", " tqdm.write(f\"Epoch {epoch + 1} completed. Avg Loss: {epoch_loss:.4f}\")\n", " else:\n", " epoch_losses.append(float(\"nan\"))\n", " tqdm.write(\n", " f\"Epoch {epoch + 1} completed. Warning: No valid samples processed.\"\n", " )\n", "\n", " print(\"Finished Training\")\n", " return epoch_losses\n", "\n", "\n", "# Define Loss and Optimizer\n", "criterion = nn.CrossEntropyLoss()\n", "optimizer = optim.Adam(model.parameters(), lr=LEARNING_RATE, weight_decay=WEIGHT_DECAY)\n", "\n", "# Check if trainloader_poisoned exists before training\n", "if \"trainloader_poisoned\" in locals() and trainloader_poisoned is not None:\n", " print(\"Starting model training...\")\n", " train_losses = train_model(\n", " model, trainloader_poisoned, criterion, optimizer, NUM_EPOCHS, device\n", " )\n", "\n", " # Save the trained model\n", " MODEL_SAVE_PATH = \"mnist_cnn_trojaned.pth\"\n", " torch.save(model.state_dict(), MODEL_SAVE_PATH)\n", " print(f\"Trained model saved to {MODEL_SAVE_PATH}\")\n", "else:\n", " print(\"ERROR: `trainloader_poisoned` is not defined. Cannot train model.\")\n", " print(\"Please complete Part 3.\")\n", " MODEL_SAVE_PATH = None\n" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "--- Local Clean Accuracy Evaluation\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/nix-shell-4291-666081379/ipykernel_4924/4048373565.py:86: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.\n", " model.load_state_dict(torch.load(MODEL_SAVE_PATH, map_location=device))\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " Evaluation on 'Clean Test Data' Set:\n", " Accuracy (CA): 99.08% (9908/10000)\n", "\n", "--- Local Attack Success Rate Evaluation\n", " Attack Success Rate (ASR):\n", " ASR: 100.00% (1028/1028 triggered source images misclassified as target)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/nix-shell-4291-666081379/ipykernel_4924/4048373565.py:97: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.\n", " model.load_state_dict(torch.load(MODEL_SAVE_PATH, map_location=device))\n" ] } ], "source": [ "def evaluate_model(model, testloader, criterion, device, description=\"Test\"):\n", " \"\"\"Evaluates model accuracy and loss.\"\"\"\n", " model.eval()\n", " correct = 0\n", " total = 0\n", " running_loss = 0.0\n", " num_valid_samples_eval = 0\n", "\n", " with torch.no_grad():\n", " for inputs, labels in testloader:\n", " if inputs is None or labels is None:\n", " continue # Basic check\n", " inputs, labels = inputs.to(device), labels.to(device)\n", "\n", " outputs = model(inputs)\n", " loss = criterion(outputs, labels)\n", " running_loss += loss.item() * inputs.size(0)\n", "\n", " _, predicted = torch.max(outputs.data, 1)\n", " total += labels.size(0) # Count all attempted samples\n", " correct += (predicted == labels).sum().item()\n", " num_valid_samples_eval += labels.size(0) # Assume all are valid here\n", "\n", " if num_valid_samples_eval == 0:\n", " print(f\"Warning: No valid samples found in '{description}' set for evaluation.\")\n", " return 0.0, 0.0\n", "\n", " accuracy = 100 * correct / num_valid_samples_eval\n", " avg_loss = running_loss / num_valid_samples_eval\n", " print(f\" Evaluation on '{description}' Set:\")\n", " print(f\" Accuracy (CA): {accuracy:.2f}% ({correct}/{num_valid_samples_eval})\")\n", " return accuracy, avg_loss\n", "\n", "\n", "def calculate_asr(model, triggered_testloader, source_class, target_class, device):\n", " \"\"\"Calculates the Attack Success Rate (ASR).\"\"\"\n", " model.eval()\n", " misclassified_as_target = 0\n", " total_source_class_triggered = 0\n", "\n", " with torch.no_grad():\n", " for (\n", " inputs,\n", " labels,\n", " ) in triggered_testloader: # inputs are triggered, labels are original\n", " if inputs is None or labels is None:\n", " continue\n", " inputs, labels = inputs.to(device), labels.to(device)\n", "\n", " # Identify samples whose *original* label was the source_class\n", " source_mask = labels == source_class\n", " if not source_mask.any():\n", " continue\n", "\n", " source_inputs = inputs[source_mask]\n", " source_labels_original = labels[\n", " source_mask\n", " ] # Keep for sanity check if needed\n", "\n", " outputs = model(source_inputs)\n", " _, predicted = torch.max(outputs.data, 1)\n", "\n", " total_source_class_triggered += source_inputs.size(0)\n", " misclassified_as_target += (predicted == target_class).sum().item()\n", "\n", " if total_source_class_triggered == 0:\n", " print(\n", " f\"Warning: No samples from source class ({source_class}) found in the triggered test set.\"\n", " )\n", " return 0.0\n", "\n", " asr = 100 * misclassified_as_target / total_source_class_triggered\n", " print(f\" Attack Success Rate (ASR):\")\n", " print(\n", " f\" ASR: {asr:.2f}% ({misclassified_as_target}/{total_source_class_triggered} triggered source images misclassified as target)\"\n", " )\n", " return asr\n", "\n", "\n", "# Perform local evaluation\n", "if \"testloader_clean\" in locals() and testloader_clean and MODEL_SAVE_PATH:\n", " print(\"\\n--- Local Clean Accuracy Evaluation\")\n", " # Ensure model is loaded if kernel restarted\n", " if \"model\" not in locals():\n", " model = MNIST_CNN().to(device)\n", " model.load_state_dict(torch.load(MODEL_SAVE_PATH, map_location=device))\n", " evaluate_model(model, testloader_clean, criterion, device, \"Clean Test Data\")\n", "else:\n", " print(\n", " \"\\nSkipping local CA evaluation: `testloader_clean` not defined or model not saved.\"\n", " )\n", "\n", "if \"testloader_triggered\" in locals() and testloader_triggered and MODEL_SAVE_PATH:\n", " print(\"\\n--- Local Attack Success Rate Evaluation\")\n", " if \"model\" not in locals():\n", " model = MNIST_CNN().to(device)\n", " model.load_state_dict(torch.load(MODEL_SAVE_PATH, map_location=device))\n", " calculate_asr(model, testloader_triggered, SOURCE_CLASS, TARGET_CLASS, device)\n", "else:\n", " print(\n", " \"\\nSkipping local ASR evaluation: `testloader_triggered` not defined or model not saved.\"\n", " )\n" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.74:32728/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.74', port=32728): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n" ] } ], "source": [ "def submit_model(model_path, url):\n", " \"\"\"Submits the trained model file to the evaluator.\"\"\"\n", " if not os.path.exists(model_path):\n", " print(f\"Error: Model file not found at '{model_path}'\")\n", " return\n", "\n", " try:\n", " with open(model_path, \"rb\") as f:\n", " files = {\n", " \"model\": (os.path.basename(model_path), f, \"application/octet-stream\")\n", " }\n", " print(f\"Submitting '{os.path.basename(model_path)}' to {url}...\")\n", " response = requests.post(url, files=files, timeout=120) # Increased timeout\n", "\n", " response.raise_for_status() # Raise an exception for bad status codes (4xx or 5xx)\n", "\n", " try:\n", " result = response.json()\n", " print(\"\\n--- Evaluator Response\")\n", " if result.get(\"success\"):\n", " print(\" Evaluation Successful!\")\n", " print(f\" Flag: {result.get('flag')}\")\n", " print(f\" Clean Accuracy: {result.get('ca', 'N/A'):.2f}%\")\n", " print(f\" Attack Success Rate: {result.get('asr', 'N/A'):.2f}%\")\n", " else:\n", " print(\" Evaluation Failed.\")\n", " print(f\" Message: {result.get('message', 'No message provided.')}\")\n", " if \"ca\" in result and \"asr\" in result:\n", " print(\n", " f\" Your CA: {result['ca']:.2f}%, Your ASR: {result['asr']:.2f}%\"\n", " )\n", "\n", " except requests.exceptions.JSONDecodeError:\n", " print(\"Error: Could not decode JSON response from evaluator.\")\n", " print(\"Raw Response Text:\", response.text)\n", "\n", " except requests.exceptions.RequestException as e:\n", " print(f\"Error submitting model: {e}\")\n", " except Exception as e:\n", " print(f\"An unexpected error occurred during submission: {e}\")\n", "\n", "\n", "# Submit the model\n", "if MODEL_SAVE_PATH and os.path.exists(MODEL_SAVE_PATH):\n", " submit_model(MODEL_SAVE_PATH, EVALUATOR_URL)\n", "else:\n", " print(\"Model file not found or not saved. Cannot submit.\")\n", " print(\"Please ensure the training completed successfully and saved the model.\")\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "\n", "--- Evaluator Response\n", " Evaluation Successful!\n", " Flag: HTB{mN15t_Tr0j4n_5ucc3s5fUl!}\n", " Clean Accuracy: 99.08%\n", " Attack Success Rate: 100.00%\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Read timed out. (read timeout=120)\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n", "Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))\n", "Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n" ] }, { "ename": "KeyboardInterrupt", "evalue": "", "output_type": "error", "traceback": [ "\u001b[31m---------------------------------------------------------------------------\u001b[39m", "\u001b[31mKeyboardInterrupt\u001b[39m Traceback (most recent call last)", "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[11]\u001b[39m\u001b[32m, line 4\u001b[39m\n\u001b[32m 1\u001b[39m \u001b[38;5;28;01mwhile\u001b[39;00m \u001b[38;5;28;01mTrue\u001b[39;00m:\n\u001b[32m 2\u001b[39m \u001b[38;5;66;03m# Submit the model\u001b[39;00m\n\u001b[32m 3\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m MODEL_SAVE_PATH \u001b[38;5;129;01mand\u001b[39;00m os.path.exists(MODEL_SAVE_PATH):\n\u001b[32m----> \u001b[39m\u001b[32m4\u001b[39m \u001b[43msubmit_model\u001b[49m\u001b[43m(\u001b[49m\u001b[43mMODEL_SAVE_PATH\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mEVALUATOR_URL\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 5\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[32m 6\u001b[39m \u001b[38;5;28mprint\u001b[39m(\u001b[33m\"\u001b[39m\u001b[33mModel file not found or not saved. Cannot submit.\u001b[39m\u001b[33m\"\u001b[39m)\n", "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[9]\u001b[39m\u001b[32m, line 13\u001b[39m, in \u001b[36msubmit_model\u001b[39m\u001b[34m(model_path, url)\u001b[39m\n\u001b[32m 9\u001b[39m files = {\n\u001b[32m 10\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mmodel\u001b[39m\u001b[33m\"\u001b[39m: (os.path.basename(model_path), f, \u001b[33m\"\u001b[39m\u001b[33mapplication/octet-stream\u001b[39m\u001b[33m\"\u001b[39m)\n\u001b[32m 11\u001b[39m }\n\u001b[32m 12\u001b[39m \u001b[38;5;28mprint\u001b[39m(\u001b[33mf\u001b[39m\u001b[33m\"\u001b[39m\u001b[33mSubmitting \u001b[39m\u001b[33m'\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mos.path.basename(model_path)\u001b[38;5;132;01m}\u001b[39;00m\u001b[33m'\u001b[39m\u001b[33m to \u001b[39m\u001b[38;5;132;01m{\u001b[39;00murl\u001b[38;5;132;01m}\u001b[39;00m\u001b[33m...\u001b[39m\u001b[33m\"\u001b[39m)\n\u001b[32m---> \u001b[39m\u001b[32m13\u001b[39m response = \u001b[43mrequests\u001b[49m\u001b[43m.\u001b[49m\u001b[43mpost\u001b[49m\u001b[43m(\u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfiles\u001b[49m\u001b[43m=\u001b[49m\u001b[43mfiles\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m=\u001b[49m\u001b[32;43m120\u001b[39;49m\u001b[43m)\u001b[49m \u001b[38;5;66;03m# Increased timeout\u001b[39;00m\n\u001b[32m 15\u001b[39m response.raise_for_status() \u001b[38;5;66;03m# Raise an exception for bad status codes (4xx or 5xx)\u001b[39;00m\n\u001b[32m 17\u001b[39m \u001b[38;5;28;01mtry\u001b[39;00m:\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/site-packages/requests/api.py:115\u001b[39m, in \u001b[36mpost\u001b[39m\u001b[34m(url, data, json, **kwargs)\u001b[39m\n\u001b[32m 103\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mpost\u001b[39m(url, data=\u001b[38;5;28;01mNone\u001b[39;00m, json=\u001b[38;5;28;01mNone\u001b[39;00m, **kwargs):\n\u001b[32m 104\u001b[39m \u001b[38;5;250m \u001b[39m\u001b[33mr\u001b[39m\u001b[33;03m\"\"\"Sends a POST request.\u001b[39;00m\n\u001b[32m 105\u001b[39m \n\u001b[32m 106\u001b[39m \u001b[33;03m :param url: URL for the new :class:`Request` object.\u001b[39;00m\n\u001b[32m (...)\u001b[39m\u001b[32m 112\u001b[39m \u001b[33;03m :rtype: requests.Response\u001b[39;00m\n\u001b[32m 113\u001b[39m \u001b[33;03m \"\"\"\u001b[39;00m\n\u001b[32m--> \u001b[39m\u001b[32m115\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mrequest\u001b[49m\u001b[43m(\u001b[49m\u001b[33;43m\"\u001b[39;49m\u001b[33;43mpost\u001b[39;49m\u001b[33;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdata\u001b[49m\u001b[43m=\u001b[49m\u001b[43mdata\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mjson\u001b[49m\u001b[43m=\u001b[49m\u001b[43mjson\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m*\u001b[49m\u001b[43m*\u001b[49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/site-packages/requests/api.py:59\u001b[39m, in \u001b[36mrequest\u001b[39m\u001b[34m(method, url, **kwargs)\u001b[39m\n\u001b[32m 55\u001b[39m \u001b[38;5;66;03m# By using the 'with' statement we are sure the session is closed, thus we\u001b[39;00m\n\u001b[32m 56\u001b[39m \u001b[38;5;66;03m# avoid leaving sockets open which can trigger a ResourceWarning in some\u001b[39;00m\n\u001b[32m 57\u001b[39m \u001b[38;5;66;03m# cases, and look like a memory leak in others.\u001b[39;00m\n\u001b[32m 58\u001b[39m \u001b[38;5;28;01mwith\u001b[39;00m sessions.Session() \u001b[38;5;28;01mas\u001b[39;00m session:\n\u001b[32m---> \u001b[39m\u001b[32m59\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43msession\u001b[49m\u001b[43m.\u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmethod\u001b[49m\u001b[43m=\u001b[49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m=\u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m*\u001b[49m\u001b[43m*\u001b[49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/site-packages/requests/sessions.py:589\u001b[39m, in \u001b[36mSession.request\u001b[39m\u001b[34m(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)\u001b[39m\n\u001b[32m 584\u001b[39m send_kwargs = {\n\u001b[32m 585\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mtimeout\u001b[39m\u001b[33m\"\u001b[39m: timeout,\n\u001b[32m 586\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mallow_redirects\u001b[39m\u001b[33m\"\u001b[39m: allow_redirects,\n\u001b[32m 587\u001b[39m }\n\u001b[32m 588\u001b[39m send_kwargs.update(settings)\n\u001b[32m--> \u001b[39m\u001b[32m589\u001b[39m resp = \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43msend\u001b[49m\u001b[43m(\u001b[49m\u001b[43mprep\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m*\u001b[49m\u001b[43m*\u001b[49m\u001b[43msend_kwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 591\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m resp\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/site-packages/requests/sessions.py:703\u001b[39m, in \u001b[36mSession.send\u001b[39m\u001b[34m(self, request, **kwargs)\u001b[39m\n\u001b[32m 700\u001b[39m start = preferred_clock()\n\u001b[32m 702\u001b[39m \u001b[38;5;66;03m# Send the request\u001b[39;00m\n\u001b[32m--> \u001b[39m\u001b[32m703\u001b[39m r = \u001b[43madapter\u001b[49m\u001b[43m.\u001b[49m\u001b[43msend\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m*\u001b[49m\u001b[43m*\u001b[49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 705\u001b[39m \u001b[38;5;66;03m# Total elapsed time of the request (approximately)\u001b[39;00m\n\u001b[32m 706\u001b[39m elapsed = preferred_clock() - start\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/site-packages/requests/adapters.py:644\u001b[39m, in \u001b[36mHTTPAdapter.send\u001b[39m\u001b[34m(self, request, stream, timeout, verify, cert, proxies)\u001b[39m\n\u001b[32m 641\u001b[39m timeout = TimeoutSauce(connect=timeout, read=timeout)\n\u001b[32m 643\u001b[39m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[32m--> \u001b[39m\u001b[32m644\u001b[39m resp = \u001b[43mconn\u001b[49m\u001b[43m.\u001b[49m\u001b[43murlopen\u001b[49m\u001b[43m(\u001b[49m\n\u001b[32m 645\u001b[39m \u001b[43m \u001b[49m\u001b[43mmethod\u001b[49m\u001b[43m=\u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m.\u001b[49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 646\u001b[39m \u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m=\u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 647\u001b[39m \u001b[43m \u001b[49m\u001b[43mbody\u001b[49m\u001b[43m=\u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m.\u001b[49m\u001b[43mbody\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 648\u001b[39m \u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[43m=\u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m.\u001b[49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 649\u001b[39m \u001b[43m \u001b[49m\u001b[43mredirect\u001b[49m\u001b[43m=\u001b[49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[32m 650\u001b[39m \u001b[43m \u001b[49m\u001b[43massert_same_host\u001b[49m\u001b[43m=\u001b[49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[32m 651\u001b[39m \u001b[43m \u001b[49m\u001b[43mpreload_content\u001b[49m\u001b[43m=\u001b[49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[32m 652\u001b[39m \u001b[43m \u001b[49m\u001b[43mdecode_content\u001b[49m\u001b[43m=\u001b[49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[32m 653\u001b[39m \u001b[43m \u001b[49m\u001b[43mretries\u001b[49m\u001b[43m=\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mmax_retries\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 654\u001b[39m \u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m=\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 655\u001b[39m \u001b[43m \u001b[49m\u001b[43mchunked\u001b[49m\u001b[43m=\u001b[49m\u001b[43mchunked\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 656\u001b[39m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 658\u001b[39m \u001b[38;5;28;01mexcept\u001b[39;00m (ProtocolError, \u001b[38;5;167;01mOSError\u001b[39;00m) \u001b[38;5;28;01mas\u001b[39;00m err:\n\u001b[32m 659\u001b[39m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mConnectionError\u001b[39;00m(err, request=request)\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/site-packages/urllib3/connectionpool.py:787\u001b[39m, in \u001b[36mHTTPConnectionPool.urlopen\u001b[39m\u001b[34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)\u001b[39m\n\u001b[32m 784\u001b[39m response_conn = conn \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m release_conn \u001b[38;5;28;01melse\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[32m 786\u001b[39m \u001b[38;5;66;03m# Make the request on the HTTPConnection object\u001b[39;00m\n\u001b[32m--> \u001b[39m\u001b[32m787\u001b[39m response = \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43m_make_request\u001b[49m\u001b[43m(\u001b[49m\n\u001b[32m 788\u001b[39m \u001b[43m \u001b[49m\u001b[43mconn\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 789\u001b[39m \u001b[43m \u001b[49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 790\u001b[39m \u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 791\u001b[39m \u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m=\u001b[49m\u001b[43mtimeout_obj\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 792\u001b[39m \u001b[43m \u001b[49m\u001b[43mbody\u001b[49m\u001b[43m=\u001b[49m\u001b[43mbody\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 793\u001b[39m \u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[43m=\u001b[49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 794\u001b[39m \u001b[43m \u001b[49m\u001b[43mchunked\u001b[49m\u001b[43m=\u001b[49m\u001b[43mchunked\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 795\u001b[39m \u001b[43m \u001b[49m\u001b[43mretries\u001b[49m\u001b[43m=\u001b[49m\u001b[43mretries\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 796\u001b[39m \u001b[43m \u001b[49m\u001b[43mresponse_conn\u001b[49m\u001b[43m=\u001b[49m\u001b[43mresponse_conn\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 797\u001b[39m \u001b[43m \u001b[49m\u001b[43mpreload_content\u001b[49m\u001b[43m=\u001b[49m\u001b[43mpreload_content\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 798\u001b[39m \u001b[43m \u001b[49m\u001b[43mdecode_content\u001b[49m\u001b[43m=\u001b[49m\u001b[43mdecode_content\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 799\u001b[39m \u001b[43m \u001b[49m\u001b[43m*\u001b[49m\u001b[43m*\u001b[49m\u001b[43mresponse_kw\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 800\u001b[39m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 802\u001b[39m \u001b[38;5;66;03m# Everything went great!\u001b[39;00m\n\u001b[32m 803\u001b[39m clean_exit = \u001b[38;5;28;01mTrue\u001b[39;00m\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/site-packages/urllib3/connectionpool.py:493\u001b[39m, in \u001b[36mHTTPConnectionPool._make_request\u001b[39m\u001b[34m(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)\u001b[39m\n\u001b[32m 490\u001b[39m \u001b[38;5;66;03m# conn.request() calls http.client.*.request, not the method in\u001b[39;00m\n\u001b[32m 491\u001b[39m \u001b[38;5;66;03m# urllib3.request. It also calls makefile (recv) on the socket.\u001b[39;00m\n\u001b[32m 492\u001b[39m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[32m--> \u001b[39m\u001b[32m493\u001b[39m \u001b[43mconn\u001b[49m\u001b[43m.\u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m(\u001b[49m\n\u001b[32m 494\u001b[39m \u001b[43m \u001b[49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 495\u001b[39m \u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 496\u001b[39m \u001b[43m \u001b[49m\u001b[43mbody\u001b[49m\u001b[43m=\u001b[49m\u001b[43mbody\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 497\u001b[39m \u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[43m=\u001b[49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 498\u001b[39m \u001b[43m \u001b[49m\u001b[43mchunked\u001b[49m\u001b[43m=\u001b[49m\u001b[43mchunked\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 499\u001b[39m \u001b[43m \u001b[49m\u001b[43mpreload_content\u001b[49m\u001b[43m=\u001b[49m\u001b[43mpreload_content\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 500\u001b[39m \u001b[43m \u001b[49m\u001b[43mdecode_content\u001b[49m\u001b[43m=\u001b[49m\u001b[43mdecode_content\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 501\u001b[39m \u001b[43m \u001b[49m\u001b[43menforce_content_length\u001b[49m\u001b[43m=\u001b[49m\u001b[43menforce_content_length\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 502\u001b[39m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 504\u001b[39m \u001b[38;5;66;03m# We are swallowing BrokenPipeError (errno.EPIPE) since the server is\u001b[39;00m\n\u001b[32m 505\u001b[39m \u001b[38;5;66;03m# legitimately able to close the connection after sending a valid response.\u001b[39;00m\n\u001b[32m 506\u001b[39m \u001b[38;5;66;03m# With this behaviour, the received response is still readable.\u001b[39;00m\n\u001b[32m 507\u001b[39m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mBrokenPipeError\u001b[39;00m:\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/site-packages/urllib3/connection.py:494\u001b[39m, in \u001b[36mHTTPConnection.request\u001b[39m\u001b[34m(self, method, url, body, headers, chunked, preload_content, decode_content, enforce_content_length)\u001b[39m\n\u001b[32m 492\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m header, value \u001b[38;5;129;01min\u001b[39;00m headers.items():\n\u001b[32m 493\u001b[39m \u001b[38;5;28mself\u001b[39m.putheader(header, value)\n\u001b[32m--> \u001b[39m\u001b[32m494\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mendheaders\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 496\u001b[39m \u001b[38;5;66;03m# If we're given a body we start sending that in chunks.\u001b[39;00m\n\u001b[32m 497\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m chunks \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/http/client.py:1281\u001b[39m, in \u001b[36mHTTPConnection.endheaders\u001b[39m\u001b[34m(self, message_body, encode_chunked)\u001b[39m\n\u001b[32m 1279\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[32m 1280\u001b[39m \u001b[38;5;28;01mraise\u001b[39;00m CannotSendHeader()\n\u001b[32m-> \u001b[39m\u001b[32m1281\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43m_send_output\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmessage_body\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mencode_chunked\u001b[49m\u001b[43m=\u001b[49m\u001b[43mencode_chunked\u001b[49m\u001b[43m)\u001b[49m\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/http/client.py:1041\u001b[39m, in \u001b[36mHTTPConnection._send_output\u001b[39m\u001b[34m(self, message_body, encode_chunked)\u001b[39m\n\u001b[32m 1039\u001b[39m msg = \u001b[33mb\u001b[39m\u001b[33m\"\u001b[39m\u001b[38;5;130;01m\\r\u001b[39;00m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[33m\"\u001b[39m.join(\u001b[38;5;28mself\u001b[39m._buffer)\n\u001b[32m 1040\u001b[39m \u001b[38;5;28;01mdel\u001b[39;00m \u001b[38;5;28mself\u001b[39m._buffer[:]\n\u001b[32m-> \u001b[39m\u001b[32m1041\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43msend\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmsg\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 1043\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m message_body \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[32m 1044\u001b[39m \n\u001b[32m 1045\u001b[39m \u001b[38;5;66;03m# create a consistent interface to message_body\u001b[39;00m\n\u001b[32m 1046\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mhasattr\u001b[39m(message_body, \u001b[33m'\u001b[39m\u001b[33mread\u001b[39m\u001b[33m'\u001b[39m):\n\u001b[32m 1047\u001b[39m \u001b[38;5;66;03m# Let file-like take precedence over byte-like. This\u001b[39;00m\n\u001b[32m 1048\u001b[39m \u001b[38;5;66;03m# is needed to allow the current position of mmap'ed\u001b[39;00m\n\u001b[32m 1049\u001b[39m \u001b[38;5;66;03m# files to be taken into account.\u001b[39;00m\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/http/client.py:979\u001b[39m, in \u001b[36mHTTPConnection.send\u001b[39m\u001b[34m(self, data)\u001b[39m\n\u001b[32m 977\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m.sock \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[32m 978\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m.auto_open:\n\u001b[32m--> \u001b[39m\u001b[32m979\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mconnect\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 980\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[32m 981\u001b[39m \u001b[38;5;28;01mraise\u001b[39;00m NotConnected()\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/site-packages/urllib3/connection.py:325\u001b[39m, in \u001b[36mHTTPConnection.connect\u001b[39m\u001b[34m(self)\u001b[39m\n\u001b[32m 324\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34mconnect\u001b[39m(\u001b[38;5;28mself\u001b[39m) -> \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[32m--> \u001b[39m\u001b[32m325\u001b[39m \u001b[38;5;28mself\u001b[39m.sock = \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43m_new_conn\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 326\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m._tunnel_host:\n\u001b[32m 327\u001b[39m \u001b[38;5;66;03m# If we're tunneling it means we're connected to our proxy.\u001b[39;00m\n\u001b[32m 328\u001b[39m \u001b[38;5;28mself\u001b[39m._has_connected_to_proxy = \u001b[38;5;28;01mTrue\u001b[39;00m\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/site-packages/urllib3/connection.py:198\u001b[39m, in \u001b[36mHTTPConnection._new_conn\u001b[39m\u001b[34m(self)\u001b[39m\n\u001b[32m 193\u001b[39m \u001b[38;5;250m\u001b[39m\u001b[33;03m\"\"\"Establish a socket connection and set nodelay settings on it.\u001b[39;00m\n\u001b[32m 194\u001b[39m \n\u001b[32m 195\u001b[39m \u001b[33;03m:return: New socket connection.\u001b[39;00m\n\u001b[32m 196\u001b[39m \u001b[33;03m\"\"\"\u001b[39;00m\n\u001b[32m 197\u001b[39m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[32m--> \u001b[39m\u001b[32m198\u001b[39m sock = \u001b[43mconnection\u001b[49m\u001b[43m.\u001b[49m\u001b[43mcreate_connection\u001b[49m\u001b[43m(\u001b[49m\n\u001b[32m 199\u001b[39m \u001b[43m \u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43m_dns_host\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mport\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 200\u001b[39m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mtimeout\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 201\u001b[39m \u001b[43m \u001b[49m\u001b[43msource_address\u001b[49m\u001b[43m=\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43msource_address\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 202\u001b[39m \u001b[43m \u001b[49m\u001b[43msocket_options\u001b[49m\u001b[43m=\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43msocket_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 203\u001b[39m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 204\u001b[39m \u001b[38;5;28;01mexcept\u001b[39;00m socket.gaierror \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[32m 205\u001b[39m \u001b[38;5;28;01mraise\u001b[39;00m NameResolutionError(\u001b[38;5;28mself\u001b[39m.host, \u001b[38;5;28mself\u001b[39m, e) \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34;01me\u001b[39;00m\n", "\u001b[36mFile \u001b[39m\u001b[32m~/.conda/envs/ai/lib/python3.11/site-packages/urllib3/util/connection.py:73\u001b[39m, in \u001b[36mcreate_connection\u001b[39m\u001b[34m(address, timeout, source_address, socket_options)\u001b[39m\n\u001b[32m 71\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m source_address:\n\u001b[32m 72\u001b[39m sock.bind(source_address)\n\u001b[32m---> \u001b[39m\u001b[32m73\u001b[39m \u001b[43msock\u001b[49m\u001b[43m.\u001b[49m\u001b[43mconnect\u001b[49m\u001b[43m(\u001b[49m\u001b[43msa\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 74\u001b[39m \u001b[38;5;66;03m# Break explicitly a reference cycle\u001b[39;00m\n\u001b[32m 75\u001b[39m err = \u001b[38;5;28;01mNone\u001b[39;00m\n", "\u001b[31mKeyboardInterrupt\u001b[39m: " ] } ], "source": [ "while True:\n", " # Submit the model\n", " if MODEL_SAVE_PATH and os.path.exists(MODEL_SAVE_PATH):\n", " submit_model(MODEL_SAVE_PATH, EVALUATOR_URL)\n", " else:\n", " print(\"Model file not found or not saved. Cannot submit.\")\n", " print(\"Please ensure the training completed successfully and saved the model.\")" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.6" } }, "nbformat": 4, "nbformat_minor": 4 }