Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bicleaner-ai-train « scripts - github.com/bitextor/bicleaner-ai.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 408d9de14964b108427ccd2ff7747dcc75d430fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
import os
# Suppress Tenssorflow logging messages unless log level is explictly set
if 'TF_CPP_MIN_LOG_LEVEL' not in os.environ:
    os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
import sys
import bicleaner_ai.bicleaner_ai_train as train

def main(argv):
    args = train.initialization()
    train.main(args)

if __name__ == '__main__':
    main(sys.argv[1:])