1
0
Форкнуть 0

Update run.py and revert the path to r script

Previously the path to the r script has been adjusted to include src folder which is wrong since run.py should be also inside the src folder.
This commit is contained in:
Andrey Garmash 2023-07-24 14:37:28 +02:00 коммит произвёл GitHub
Родитель 2fe5388c90
Коммит 742560fa8d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -90,7 +90,7 @@ def runParallel(inputPath, outputPath):
partition_keys=['GranularityAttributeKey'],
error_threshold=-1, # parallel run checks output rows count vs input and throws error if output < input, we need to disable this behavior.
output_action="append_row", # output of each minibatch run is concatenated into 1 txt file with no column header.
source_directory="src/REntryScript",
source_directory="REntryScript",
description="Generate demand forecast.",
compute_target=cluster,
node_count=parameters.nodes_count,