diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2c5e5d3b6c25e3f91b1f823d598b9465c7ea2f78..9332c5d6830b4d7aab0b19b71b18746b0334f11e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,33 +1,34 @@
 stages:
-  - build
-  - test
-  - coverage
-  - deploy
-  - pages
+  - dataset
+  - model
+  - optimizer
+  - train
+  - evaluation
+#  - build
+#  - test
+#  - coverage
+#  - deploy
+#  - pages
 
 
-
-build:
+dataset:
     tags: 
      - linux
-    stage: build
+    stage: dataset
     script: 
-        - echo "Building"
-        - mkdir build
-        - touch build/info.txt
-
+        - echo "dataset testing"
 
-test:
+model:
     tags: 
      - linux
-    stage: test
+    stage: model
     script:
-      - zypper --non-interactive install python3-pip
-      - zypper --non-interactive install python-devel
-      - pip install --upgrade pip
-      - pip install -r requirements.txt
-      - python3 test/test_DataMgr.py
-
+        - echo "model testing"
+#      - zypper --non-interactive install python3-pip
+#      - zypper --non-interactive install python-devel
+#      - pip install --upgrade pip
+#      - pip install -r requirements.txt
+#      - python3 test/test_DataMgr.py
 
 docs:
     tags: