Files
Jeremy Janella 75faa5c410 added material
2026-05-09 23:21:13 -04:00

6206 lines
1023 KiB
Plaintext

{
"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<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
" Found 6265 images of source class 7.\n",
" Selecting 626 to poison.\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9f49f1fedd4f48faae823bf83bb78c1b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Processing Poisoned Set: 0%| | 0/60000 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"PoisonedMNISTTrain dataset initialized. Size: 60000. Poisoned samples: 626\n",
"Initializing TriggeredMNISTTest dataset...\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "adf08af263f34fed9acf8cb6090be6b1",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Processing Triggered Test Set: 0%| | 0/10000 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"TriggeredMNISTTest dataset initialized. Size: 10000. Triggered source samples: 1028\n",
"Poisoned trainloader created. Batches per epoch: 469\n",
"Triggered testloader created. Batches: 40\n"
]
}
],
"source": [
"class PoisonedMNISTTrain(Dataset):\n",
" \"\"\"\n",
" Creates a poisoned MNIST training set. Applies trigger to a fraction of\n",
" source class images and relabels them. Applies normalization at the end.\n",
" \"\"\"\n",
"\n",
" def __init__(\n",
" self,\n",
" clean_dataset,\n",
" source_class,\n",
" target_class,\n",
" poison_rate,\n",
" trigger_func,\n",
" transform_norm,\n",
" ):\n",
" self.clean_dataset = clean_dataset\n",
" self.source_class = source_class\n",
" self.target_class = target_class\n",
" self.poison_rate = poison_rate\n",
" self.trigger_func = trigger_func\n",
" self.transform_norm = transform_norm\n",
"\n",
" self.data = []\n",
" self.poisoned_indices_count = 0\n",
"\n",
" print(\"Initializing PoisonedMNISTTrain dataset...\")\n",
" # Implement poisoning logic\n",
" source_indices = [\n",
" i\n",
" for i, (_, label) in enumerate(\n",
" tqdm(clean_dataset, desc=\"Finding source samples\")\n",
" )\n",
" if label == source_class\n",
" ]\n",
"\n",
" num_source_samples = len(source_indices)\n",
" num_to_poison = int(num_source_samples * poison_rate)\n",
" # Use globally seeded random generator\n",
" indices_to_poison = set(random.sample(source_indices, num_to_poison))\n",
" self.poisoned_indices_count = len(indices_to_poison)\n",
"\n",
" print(f\" Found {num_source_samples} images of source class {source_class}.\")\n",
" print(f\" Selecting {num_to_poison} to poison.\")\n",
"\n",
" # Process all data and store final (normalized_tensor, final_label)\n",
" for i in tqdm(range(len(clean_dataset)), desc=\"Processing Poisoned Set\"):\n",
" img_tensor, original_label = clean_dataset[\n",
" i\n",
" ] # Assumes clean_dataset outputs [0,1] tensor\n",
" final_label = original_label\n",
" img_processed = img_tensor.clone() # Important!\n",
"\n",
" if i in indices_to_poison:\n",
" img_processed = self.trigger_func(img_processed) # Apply trigger\n",
" final_label = self.target_class # Change label\n",
"\n",
" # Apply final normalization to ALL images\n",
" img_processed = self.transform_norm(img_processed)\n",
"\n",
" self.data.append((img_processed, final_label))\n",
"\n",
" print(\n",
" f\"PoisonedMNISTTrain dataset initialized. Size: {len(self.data)}. Poisoned samples: {self.poisoned_indices_count}\"\n",
" )\n",
"\n",
" def __len__(self):\n",
" # Return the total number of samples\n",
" return len(self.data)\n",
"\n",
" def __getitem__(self, idx):\n",
" # Return the pre-processed tuple\n",
" return self.data[idx]\n",
"\n",
"\n",
"class TriggeredMNISTTest(Dataset):\n",
" \"\"\"\n",
" Creates a test set where all images of the source class have the trigger\n",
" applied. Retains ORIGINAL labels. Applies normalization.\n",
" \"\"\"\n",
"\n",
" def __init__(self, clean_dataset, source_class, trigger_func, transform_norm):\n",
" self.clean_dataset = clean_dataset\n",
" self.source_class = source_class\n",
" self.trigger_func = trigger_func\n",
" self.transform_norm = transform_norm\n",
" self.data = []\n",
" self.triggered_count = 0\n",
"\n",
" print(\"Initializing TriggeredMNISTTest dataset...\")\n",
" # Implement trigger application logic\n",
" for i in tqdm(range(len(clean_dataset)), desc=\"Processing Triggered Test Set\"):\n",
" img_tensor, original_label = clean_dataset[\n",
" i\n",
" ] # Assumes clean_dataset outputs [0,1] tensor\n",
" img_processed = img_tensor.clone()\n",
"\n",
" # Apply trigger ONLY to source class images\n",
" if original_label == self.source_class:\n",
" img_processed = self.trigger_func(img_processed)\n",
" self.triggered_count += 1\n",
"\n",
" # Normalize all images\n",
" img_processed = self.transform_norm(img_processed)\n",
" # Keep the ORIGINAL label\n",
" self.data.append((img_processed, original_label))\n",
"\n",
" print(\n",
" f\"TriggeredMNISTTest dataset initialized. Size: {len(self.data)}. Triggered source samples: {self.triggered_count}\"\n",
" )\n",
"\n",
" def __len__(self):\n",
" # Return the total number of samples\n",
" return len(self.data)\n",
"\n",
" def __getitem__(self, idx):\n",
" # Return the pre-processed tuple\n",
" return self.data[idx]\n",
"\n",
"\n",
"# Instantiate the Datasets\n",
"if trainset_clean_raw and testset_clean_raw:\n",
" trainset_poisoned = PoisonedMNISTTrain(\n",
" clean_dataset=trainset_clean_raw,\n",
" source_class=SOURCE_CLASS,\n",
" target_class=TARGET_CLASS,\n",
" poison_rate=POISON_RATE,\n",
" trigger_func=add_trigger,\n",
" transform_norm=transform_norm,\n",
" )\n",
"\n",
" testset_triggered = TriggeredMNISTTest(\n",
" clean_dataset=testset_clean_raw, # Use raw test set as input\n",
" source_class=SOURCE_CLASS,\n",
" trigger_func=add_trigger,\n",
" transform_norm=transform_norm,\n",
" )\n",
"else:\n",
" print(\"Error: Raw datasets not loaded correctly in Part 1.\")\n",
" trainset_poisoned = None\n",
" testset_triggered = None\n",
"\n",
"# Create DataLoaders\n",
"if trainset_poisoned and testset_triggered:\n",
" trainloader_poisoned = DataLoader(\n",
" trainset_poisoned,\n",
" batch_size=BATCH_SIZE,\n",
" shuffle=True,\n",
" num_workers=0, # Adjust based on system\n",
" )\n",
"\n",
" testloader_triggered = DataLoader(\n",
" testset_triggered,\n",
" batch_size=BATCH_SIZE * 2, # Can use larger batch for eval\n",
" shuffle=False,\n",
" num_workers=0,\n",
" )\n",
"else:\n",
" print(\"Error: Poisoned/Triggered datasets not created.\")\n",
" trainloader_poisoned = None\n",
" testloader_triggered = None\n",
"\n",
"\n",
"# Check\n",
"if trainloader_poisoned:\n",
" print(\n",
" f\"Poisoned trainloader created. Batches per epoch: {len(trainloader_poisoned)}\"\n",
" )\n",
"if testloader_triggered:\n",
" print(f\"Triggered testloader created. Batches: {len(testloader_triggered)}\")\n"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Model Architecture:\n",
"MNIST_CNN(\n",
" (conv1): Conv2d(1, 32, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1))\n",
" (pool1): MaxPool2d(kernel_size=2, stride=2, padding=0, dilation=1, ceil_mode=False)\n",
" (conv2): Conv2d(32, 64, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1))\n",
" (pool2): MaxPool2d(kernel_size=2, stride=2, padding=0, dilation=1, ceil_mode=False)\n",
" (fc1): Linear(in_features=3136, out_features=128, bias=True)\n",
" (dropout): Dropout(p=0.5, inplace=False)\n",
" (fc2): Linear(in_features=128, out_features=10, bias=True)\n",
")\n"
]
}
],
"source": [
"class MNIST_CNN(nn.Module):\n",
" def __init__(self, num_classes=NUM_CLASSES):\n",
" super(MNIST_CNN, self).__init__()\n",
" self.conv1 = nn.Conv2d(in_channels=1, out_channels=32, kernel_size=3, padding=1)\n",
" # Output: (Batch, 32, 28, 28)\n",
" self.pool1 = nn.MaxPool2d(kernel_size=2, stride=2)\n",
" # Output: (Batch, 32, 14, 14)\n",
" self.conv2 = nn.Conv2d(\n",
" in_channels=32, out_channels=64, kernel_size=3, padding=1\n",
" )\n",
" # Output: (Batch, 64, 14, 14)\n",
" self.pool2 = nn.MaxPool2d(kernel_size=2, stride=2)\n",
" # Output: (Batch, 64, 7, 7)\n",
"\n",
" self._feature_size = 64 * 7 * 7 # 3136\n",
" self.fc1 = nn.Linear(self._feature_size, 128)\n",
" self.dropout = nn.Dropout(0.5)\n",
" self.fc2 = nn.Linear(128, num_classes)\n",
"\n",
" def forward(self, x):\n",
" x = self.pool1(F.relu(self.conv1(x)))\n",
" x = self.pool2(F.relu(self.conv2(x)))\n",
" x = x.view(-1, self._feature_size) # Flatten\n",
" x = F.relu(self.fc1(x))\n",
" x = self.dropout(x)\n",
" x = self.fc2(x)\n",
" return x\n",
"\n",
"\n",
"# Instantiate the model\n",
"model = MNIST_CNN().to(device)\n",
"print(\"Model Architecture:\")\n",
"print(model)\n"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Starting model training...\n",
"\n",
"Starting training for 5 epochs on cpu...\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3602e0e5df30405991ef223503e46dbc",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Epochs: 0%| | 0/5 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "01b0de157a904460a4ac0a01f49c21ee",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Epoch 1/5: 0%| | 0/469 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Epoch 1 completed. Avg Loss: 0.2373\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "45fa80355a30436a91c0b2cae86cb054",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Epoch 2/5: 0%| | 0/469 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Epoch 2 completed. Avg Loss: 0.0787\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1d4c9218c12b4d1491207c7902d0d985",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Epoch 3/5: 0%| | 0/469 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Epoch 3 completed. Avg Loss: 0.0620\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9d095696222043408e35a4786b04b986",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Epoch 4/5: 0%| | 0/469 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Epoch 4 completed. Avg Loss: 0.0506\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "bc11b36d69904daea3fe0b340152650b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"Epoch 5/5: 0%| | 0/469 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Epoch 5 completed. Avg Loss: 0.0441\n",
"Finished Training\n",
"Trained model saved to mnist_cnn_trojaned.pth\n"
]
}
],
"source": [
"def train_model(model, trainloader, criterion, optimizer, num_epochs, device):\n",
" \"\"\"Trains a PyTorch model.\"\"\"\n",
" model.train()\n",
" epoch_losses = []\n",
" print(f\"\\nStarting training for {num_epochs} epochs on {device}...\")\n",
" total_batches = len(trainloader)\n",
"\n",
" for epoch in trange(num_epochs, desc=\"Epochs\"):\n",
" running_loss = 0.0\n",
" num_valid_samples_epoch = 0\n",
" with tqdm(\n",
" total=total_batches, desc=f\"Epoch {epoch + 1}/{num_epochs}\", leave=False\n",
" ) as batch_bar:\n",
" for i, (inputs, labels) in enumerate(trainloader):\n",
" # Basic check for valid data - can be enhanced\n",
" if inputs is None or labels is None:\n",
" continue\n",
"\n",
" inputs, labels = inputs.to(device), labels.to(device)\n",
"\n",
" optimizer.zero_grad()\n",
" outputs = model(inputs)\n",
" loss = criterion(outputs, labels)\n",
" loss.backward()\n",
" optimizer.step()\n",
"\n",
" running_loss += loss.item() * inputs.size(0)\n",
" num_valid_samples_epoch += inputs.size(0)\n",
"\n",
" batch_bar.update(1)\n",
" batch_bar.set_postfix(loss=loss.item())\n",
"\n",
" if num_valid_samples_epoch > 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('<urllib3.connection.HTTPConnection object at 0x7f873694bcd0>: 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('<urllib3.connection.HTTPConnection object at 0x7f873696a750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369a8e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736cc8210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ca90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f49690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c892e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736958f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf62d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350738d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ed10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f0f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb1f3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369917d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa3410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ff90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875915ffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc5010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759164190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2edbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694bc10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350724d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736970ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da0490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ca50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848d82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369922d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f507d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c46be10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369914d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736cc8150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting '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('<urllib3.connection.HTTPConnection object at 0x7f8736990310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc1950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c778dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ead0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350736d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52f410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369938d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369902d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ed10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f885d3ed050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696acd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736efa450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736968f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9b10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696acd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c892e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb43350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736cc8210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369931d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736961650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736a0ef10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfd10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506db50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1188d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736971150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f502d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa3650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87591641d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c211c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb43350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c50f9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ead0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736cc8210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369730d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ed10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875babe9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f536d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f0f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafad10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dc90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f77490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c50f9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735070a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848d82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ead0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bda10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cc10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992b10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736958150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f0f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073b10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f77490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8b9710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c28bb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875915ffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c01a690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c46be90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafa350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f2b10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c29c650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506db50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736cc8190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369929d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb405d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0ba9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1a7f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736973310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8b9710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875babd750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736972090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cb50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bf2dad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735070590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736972f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c497690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369922d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c211ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f536d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ce50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f885d3ec250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fd50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baff750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ff90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf7690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ead0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736937890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a0c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87591641d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1a7f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ead0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8616d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb1e590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736960fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369933d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c29e6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c76b690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696bed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da9c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c46be90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c754b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736960050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759164110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2159d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8616d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736972c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c771410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0e4090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f534d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa36d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875babfb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ced0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb405d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736f88710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f885d3ed050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb1fed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8862d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736f88710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f885d3ec250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c01a690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0e4090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87591e0690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fc10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759190250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f524d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8932d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369905d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a0c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736e1c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506de10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350706d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369930d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c754b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8babd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ddd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f506d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350705d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dc90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c892e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f885d3ed050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4db10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350705d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ddd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ccd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736efa450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8babd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f77550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f885d3ec190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bab50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c497bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da0490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb1f3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369927d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350734d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1a7f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf9a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696acd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c211ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa3490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759190250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0dad10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736b5dc90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350737d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8862d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c033f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bf2db90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c034110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0e4090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369911d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafeb10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f77610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993b10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c228790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4dd90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c861c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848daa1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736a0ef10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8babd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c528590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ded0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc4d890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ed90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1c5e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736eb4cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c76b690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baffe90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ff50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dd2cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350724d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc6050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369693d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ff90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369934d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f2b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f521d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1c5e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369911d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c034150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759048e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ee50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da7c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a22d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f885d3ec190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fd50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be8c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4dad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f885d3ec250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350738d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875babfb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736cc8150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369938d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875915ffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ed10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49a250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736962ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baff9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c890b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8babd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369901d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506df50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736a0ee90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759115210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c28bb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993b10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ffa1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736e66d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafa350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735070490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c528590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da9c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c072050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0c3610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759277310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0e4090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49a250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848daa190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369927d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ff10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c008f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bf2db90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb405d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87590c63d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1188d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736eb4d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4edd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848d82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736968110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ff50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c040150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafeb10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506da90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cb50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736cc8210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bf2dad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49a250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ce50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506da90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759048e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa3690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369926d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bab50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f536d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c29c650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cb50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fd90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369923d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c497690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736960050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736d8bed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736efa450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f77550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848d82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c242d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736937890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736eb4cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c887190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdf990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350722d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875915ffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ee2510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736b0f0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87591a4110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87590c6450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc4d890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369935d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350706d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb405d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736962810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350731d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c228790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736960fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafeb10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1a7f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350731d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c242d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c526950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baff410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c861c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4dd50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c29c650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736b5dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87590c6410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ee90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf9b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8862d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f523d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c033cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4dd50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f30d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736e66d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735070050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c033cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735070490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da14d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c76b690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0ef650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736d8bed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bab50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa3590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993b10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350736d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0e4090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369919d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf99d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c48fc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c335e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafeb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369935d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506da50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0535d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf99d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c890b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c01a590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f2490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759115210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2fa010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4dc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f505d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0535d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1188d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ff9e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfd10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ead0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52f550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369907d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0c2750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875915ffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736d8bf50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c50f9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c043ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369936d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c76b690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c771410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3c0690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506da50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736eb4d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ff9e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369936d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cc90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c528590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369931d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c28bb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87590c6350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0ef650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c4988d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ed10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875915ffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369905d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c528590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc8150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4dc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c713790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736f3a0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafeb10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c4988d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f523d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506da50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db8190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736b5dc90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c072050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735070050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0c2710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f539d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1af210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736f3a0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735072c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736968110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4df10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49e4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c01a590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c335e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735070650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da14d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350722d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1ac610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c4988d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848d82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369907d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c4988d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736961650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369911d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4edd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c4b3210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875900e750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafff90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87350727d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ce10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb41190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da9c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8735073910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bd790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736d8bf50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369924d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c211ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759114f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c28bb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736958150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c771410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c713790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f533d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db9350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb430d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc2650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736cc8210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736962fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49e190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2fa010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f524d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bced0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c48fc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f523d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736d8bf50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0535d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736ddb2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a0bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ee50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa36d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bd790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c072950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c50f550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759164190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369907d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ff90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa3490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87591641d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0c3610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c008150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ee50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506da90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c497bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4edd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4de90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c034110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87590c62d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f30d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c040150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c892e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4df50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87591e0690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ed90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cb50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c210ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369911d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bcf10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52b210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8b9710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736eb4cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa36d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c497690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3c0690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfc90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ee25d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a0050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cc10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ebd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da9c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369939d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369580d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369931d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f535d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2fa010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4df50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a0050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369916d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736d8bf50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c50f550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c211c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2fa010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8862d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736af1810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc4d890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49a250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa3490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759277310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ea10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4dad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759277310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c210ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc04810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736ddb310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc04810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f521d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736e66d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ded0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da9550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc4c550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db8190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf9b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87591641d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cd50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f2650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ff50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1af210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f509d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c212f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0e4090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f77550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993b10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a22d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f507d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1a7f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f2950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c48fc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc8150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc4c750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fd50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49e190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c497bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a22d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf9010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87591a4110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0ef410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c48e8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dd2cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0c3610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cc10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf7690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ebd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c211a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ee25d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369693d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f508d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ff10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ef90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848d82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736937890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736962810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4da50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cc10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369936d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3d7fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736961650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369930d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736af1810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736b5dd90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506de10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c040150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafff10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fc10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c01a590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369629d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736c79310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506db50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c216dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ce10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c48e8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baff690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb414d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ed50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a22d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1a7e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696bed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ef50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c069710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa3490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fa50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506de10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4db90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0c2790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736958f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52f410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736fcea50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ef90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736af1710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cf50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb40b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736efa450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf87d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ff50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736ddb310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49e4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736958150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ee2250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ee90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc70a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c771410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52f110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0ef410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a22d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb40790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736a5d710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4dc90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c228790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8616d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bae8550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ef50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ffa2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369936d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736c79310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c48e8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c06b150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369935d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c4988d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf8d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736960150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49e4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ef90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dfd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8b9710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736eb4cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f517d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c771410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2159d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f30cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc2650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369931d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52f590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759164110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf7690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bae8090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c211b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0ef410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ea90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736b5dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369693d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ea10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c01a590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f517d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736af1710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baffc90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f524d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baeedd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ead0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3c0690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cf10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f2890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ca90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875900e750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2159d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f77450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bcbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fdd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c713790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bced0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ee50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c71e810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc3410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736ddb310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4da90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c497690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf7690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736d8bed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736a5d250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4df10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c892e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ff10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c497690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bab50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafff10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848d82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c48e8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2f8590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369933d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c01a690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736a5d250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c072050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cdd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c71e6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f77450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875900e690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafa450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dd50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736d900d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736efa450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736cc8150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875babfb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696bbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736f888d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736962810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db8150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ff9e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c216c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736c79310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c211b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baffed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfa90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ff9e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bae8090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ea50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c28bb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c528890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f534d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc9090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dab710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c71e6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736b5dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dab710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f502d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f2490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db9350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ed50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ee2250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736cc8150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c043ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ded0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc04810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848daa1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369939d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dd2cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736eb4e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ea10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a22d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fd50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736ddb310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dab710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da0490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c713790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c034110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c034110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c008150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c008f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc8b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ec10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3b3490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baffed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc04810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c861c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694bad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baffe90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cfd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ff90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736c79310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cc90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fd50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4db50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369928d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759048e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfa90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369934d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c48fc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ed10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c4b3210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dc90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736fce950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0c1810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ee90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f774d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf7690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baeedd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0ef410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c216c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506eb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f0350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f534d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ed50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ee25d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736efa450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc04810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fa90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3d7fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c861a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4df90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c072050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafa450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736a5d710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51b10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736efa410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c212ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369919d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf62d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4de90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52f550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506eed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736d900d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfd10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848d82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cc10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369924d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc2d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dab710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c033dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c212f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c222390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c4b3210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c008f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736efa450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875babfa50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f526d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369932d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759277350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafa790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db8150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736960150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f501d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1af210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87590c63d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb407d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ec90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ff9e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f501d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3d7fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f2950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c222390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ebd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb407d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369929d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736fcea50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ce10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4df50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf62d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4db10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f524d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736fce950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506db90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736b5dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cb50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f536d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875babfa50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be8990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f518d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759277350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ed10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736937890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875900e750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369919d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3b3490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be8690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f501d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736b5dc90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0c27d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759048e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369693d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f524d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cb50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ccd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736eb4c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369921d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bfbcf50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c211950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369931d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506db10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da14d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cf90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a0c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafb7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4edd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baff410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3b3490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c072950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baeedd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c008150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369933d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db8150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dc10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ef90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c01a710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993b50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dd3590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db9350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baff690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db8150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fe10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875915ffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f508d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dd90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c29e6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369929d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bae8090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736f39f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759164110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f531d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506db10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fdd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736b5dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4dd90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dd2cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736962f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a22d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506da90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736990210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ddd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc04810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb431d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c29c650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848d82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ddd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ff90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0c2790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fd50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369906d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c034150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759277350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736993050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc04810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1188d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c71e810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb43250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992c50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cf90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759277350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736eb4c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369939d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f531d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c222290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759048f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736991810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736e66d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ff9e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696bbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafacd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c48fc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1188d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736992c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ff9e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb40810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c48e8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa3690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736968110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c241150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0c27d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848daa1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50a90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506cbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafb7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da9550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ebd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3d7fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736937910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c033dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c216c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c222290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ded0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8862d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb40790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736962ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52d10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506dd50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafb7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ee2510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736958f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848d82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52b210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f533d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736a5d710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafa350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb414d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848d82a10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ec10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49a250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c242d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ed50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49e4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafa350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736968990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736c815d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfd10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa3690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f2950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c4b3090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafeb10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c033dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bcbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f2890>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736960050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c4b3090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759277350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736968390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ee2510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c228790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be8850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4cc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52f550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ef90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da9550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c222290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bac650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736961650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1af210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a0050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87590c62d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ee2650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759114fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c222290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87592773d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736937910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2f8590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafad10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be8690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f507d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc4c550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb414d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52f110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ddd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736968990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0bced0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb43250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875babfb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696ae90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baff9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1af210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f30d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc4c550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f1190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4e990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c043c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baf98d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759164110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c29e6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c496550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736958f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fdd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736961f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db9350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1188d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc3410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c06ac50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c50f490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c887190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb431d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694bad0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db9350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4d550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdffd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ff9cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c892e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3c0690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc8590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736fce950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baffe90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4eb50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736961650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ffa090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c033cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0ba9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da9950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87591e0690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736962f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c210>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736968990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736937910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb08750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb40fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ec90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736e66d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c713790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ee2650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0697d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f519d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f30d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ea10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875900e750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fe10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736b5dd90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694bbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f508d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4fbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb08750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c496550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb43350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ec90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4c8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875900e750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb42790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc3590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f30d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c033cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848db9350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb41450>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c2a22d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0e4090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c072950>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb40fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc3590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb08750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759277350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52f110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c713790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736fcea50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736e66e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f8610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c5287d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8babd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c887190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736968110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c772650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506d690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0e4090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f531d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc9090>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52f110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875baffed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736aa35d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc310>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ec10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848da0490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3fb6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506da90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736958f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0ba9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736968d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736960690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c713790>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506fcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53d50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c01a910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736962810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694bc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c50f550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ff9b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ec10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87590c63d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736960050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c241150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736937bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963a50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc8590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49e010>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c216dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694bc10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963990>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c01a690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bc4c610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736961f50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc2650>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c528590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c118c10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0f0350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc8b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4ee90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736efa410>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ee90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736958f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736959d90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87592773d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736a5d250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758f30cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c06b150>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8616d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369612d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c3f9290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506f250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c76b690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506c4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bb405d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736969e90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c49e4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ff9b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694bb10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f50350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87369612d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be8690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c033f10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736eb4cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c337750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c8b9710>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f508d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c497690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c52f110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694bc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0cc190>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736bdfb90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a050>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafbe50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52250>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0c1810>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696a350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736be9750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c0535d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736f888d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f4f550>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52c90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736958f90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafabd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53510>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736960ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dc8b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696bed0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ff9e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c01a910>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694bc10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8758ffa2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759227dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f51b90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873695a390>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c1ac610>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f52690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c499290>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8759164110>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506e350>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736968750>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87591e0690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694bc50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8848dd4850>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875bafb7d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963e10>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8736963490>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f8734f53e50>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c4988d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f87590c63d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873506ff90>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873696b590>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c221690>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f873694b8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))\n",
"Submitting 'mnist_cnn_trojaned.pth' to http://154.57.164.80:30519/evaluate...\n",
"Error submitting model: HTTPConnectionPool(host='154.57.164.80', port=30519): Max retries exceeded with url: /evaluate (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f875c499290>: Failed 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
}