From ee470de884d355d026084f92c7fbd53e443fb561 Mon Sep 17 00:00:00 2001 From: retoor Date: Sat, 23 Nov 2024 20:18:21 +0100 Subject: [PATCH] Removed time --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 72c9f4b..aa50cc9 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,14 @@ all: build clean sync_excempt export_dataset export_stats merge_images build: - time pip install build - time python -m build . - time pip install -e . + pip install build + python -m build . + pip install -e . sync: - time dr.sync + dr.sync clean: -@rm -r export @@ -20,12 +20,12 @@ sync_excempt: export_stats: @echo "Make sure you have ran 'make sync' first. Results will be in ./export/" @echo "Exporting statisticts." - time dr.stats_all + dr.stats_all export_dataset: @echo "Make sure you have ran 'make sync' first." @echo "Exporting dataset to be used for LLM embedding. Result will be ./export/0_dataset.txt" - time dr.dataset > export/dataset.txt + dr.dataset > export/dataset.txt merge_images: @echo "Merging images to one big image. Result will be ./export/1_graphs_compliation.png."