Skip to content

Commit 41a4d60

Browse files
REFACTOR: Renaming the combination.py to stacking.py
1 parent 5715332 commit 41a4d60

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ main: $(VENV)
2525
$(CLEAR_CMD)
2626
$(TIME_CMD) $(PYTHON) ./main.py
2727

28-
combination: $(VENV)
29-
$(CLEAR_CMD)
30-
$(TIME_CMD) $(PYTHON) ./combination.py
31-
3228
dataset_descriptor: $(VENV)
3329
$(CLEAR_CMD)
3430
$(TIME_CMD) $(PYTHON) ./dataset_descriptor.py
@@ -45,6 +41,10 @@ rfe: $(VENV)
4541
$(CLEAR_CMD)
4642
$(TIME_CMD) $(PYTHON) ./rfe.py
4743

44+
stacking: $(VENV)
45+
$(CLEAR_CMD)
46+
$(TIME_CMD) $(PYTHON) ./stacking.py
47+
4848
telegram: $(VENV)
4949
$(CLEAR_CMD)
5050
$(TIME_CMD) $(PYTHON) ./telegram_bot.py
@@ -69,4 +69,4 @@ clean:
6969
find . -type f -name '*.pyc' -delete || del /S /Q *.pyc 2>nul
7070
find . -type d -name '__pycache__' -delete || rmdir /S /Q __pycache__ 2>nul
7171

72-
.PHONY: all main clean dependencies generate_requirements combination dataset_descriptor genetic_algorithm pca rfe telegram
72+
.PHONY: all main clean dependencies generate_requirements dataset_descriptor genetic_algorithm pca rfe stacking telegram
File renamed without changes.

0 commit comments

Comments
 (0)