12 lines
346 B
Python
12 lines
346 B
Python
# This is a sample Python script.
|
|
|
|
# Press Umschalt+F10 to execute it or replace it with your code.
|
|
# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.
|
|
|
|
|
|
# See PyCharm help at https://www.jetbrains.com/help/pycharm/
|
|
from ImageImpaint import train_model
|
|
|
|
if __name__ == '__main__':
|
|
train_model()
|