-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
66 lines (51 loc) · 1.49 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
.PHONY: notebook docs
.EXPORT_ALL_VARIABLES:
setup:
initialize_git install
install:
@echo "Installing..."
poetry install
poetry run pre-commit install
activate:
@echo "Activating virtual environment"
poetry shell
initialize_git:
git init
pull_data:
poetry run dvc pull
test:
pytest
docs_view:
@echo View API documentation...
pdoc src --http localhost:8080
docs_save:
@echo Save documentation to docs...
pdoc src -o docs
## Delete all compiled Python files
clean:
find . -type f -name "*.py[co]" -delete
find . -type d -name "__pycache__" -delete
rm -rf .pytest_cache
# Regra para verificar as restrições do arquivo CSV
check_restricoes:
@echo "Verificando restrições do arquivo CSV..."
poetry run python src/utilities/check_csv_restricoes.py $(ARQUIVO_ENTRADA)
# Regra para quebrar o texto em sentenças
break_text:
@echo "Quebrando texto em sentenças..."
poetry run python src/utilities/break_text.py $(ARQUIVO_ENTRADA)
# Regra para traduzir o texto
translate:
@echo "Traduzindo texto..."
poetry run python src/utilities/translate.py
# Regra para verificar restrições e quebrar o texto
verificar_e_quebrar:
@echo "Verificando restrições e quebrando o texto..."
@$(MAKE) check_restricoes ARQUIVO_ENTRADA=$(ARQUIVO_ENTRADA)
@$(MAKE) break_text ARQUIVO_ENTRADA=$(ARQUIVO_ENTRADA)
translate_marian:
@echo "Traduzindo texto..."
poetry run python3 src/utilities/translate_marian.py
translate_t5:
@echo "Traduzindo texto..."
poetry run python3 src/utilities/translate_t5.py