diff --git a/results/cifar10/fully-connected-cliques-no-momentum/experiments.sh b/results/cifar10/fully-connected-cliques-no-momentum/experiments.sh
deleted file mode 100755
index acfd83c0ffb9eb32925dfebf653536f2be22d09b..0000000000000000000000000000000000000000
--- a/results/cifar10/fully-connected-cliques-no-momentum/experiments.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env bash
-TOOLS=../../../../learn-topology/tools; CWD="$(pwd)"; cd $TOOLS
-BSZS='
-    20
-    '
-LRS='
-    0.002
-    '
-for BSZ in $BSZS; 
-    do for LR in $LRS;
-        do python sgp-mnist.py --nb-nodes 100 --nb-epochs 100 --local-classes 1 --seed 1 --nodes-per-class 10 10 10 10 10 10 10 10 10 10 --global-train-ratios 1 1 1 1 1 1 1 1 1 1 --dist-optimization d-psgd --topology fully-connected-cliques --metric dissimilarity --learning-momentum 0.0 --sync-per-mini-batch 1 --results-directory $CWD/all --learning-rate $LR --batch-size $BSZ "$@" --single-process --nb-logging-processes 10 --dataset cifar10 --model gn-lenet --clique-gradient --initial-averaging --accuracy-logging-interval 10 --validation-set-ratio 0.5
-    done;
-done;
-