'How to restart kernel in python through code in spyder to avoid repetitively and manually doing it? [duplicate]

I am ensemble 2 models in syder. ( A RNN and an encoder-decoder both running on same data set). Each of them has 100 models saved in .h5 format. After loading and running RNN if I try to load models for Encoder-Decoder the system becomes slow. The solution that I found was to restart the kernel by pressing ctrl+. . How do I automate it through code so that both the models can be run in single script?



Solution 1:[1]

import os
os._exit(00)

also works in jupyter notebooks

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 David Martin