Полная ошибка, которую я получаю:
RuntimeError:
Была предпринята попытка запустить новый процесс до того, как
текущий процесс завершил фазу начальной загрузки.
Код: Выделить всё
This probably means that you are not using fork to start your
child processes and you have forgotten to use the proper idiom
in the main module:
if __name__ == '__main__':
freeze_support()
...
The "freeze_support()" line can be omitted if the program
is not going to be frozen to produce an executable.
Код: Выделить всё
trainer.fit(
X_tab=X_tab,
target=target,
n_epochs=5,
batch_size=256,
val_split=0.1)
Подробнее здесь: https://stackoverflow.com/questions/700 ... he-current