You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
572 B
24 lines
572 B
3 years ago
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Copyright 2021 Mobvoi Inc. All Rights Reserved.
|
||
|
# Author: zhendong.peng@mobvoi.com (Zhendong Peng)
|
||
|
import argparse
|
||
|
|
||
3 years ago
|
from flask import Flask
|
||
|
from flask import render_template
|
||
3 years ago
|
|
||
|
parser = argparse.ArgumentParser(description='training your network')
|
||
|
parser.add_argument('--port', default=19999, type=int, help='port id')
|
||
|
args = parser.parse_args()
|
||
|
|
||
|
app = Flask(__name__)
|
||
|
|
||
3 years ago
|
|
||
3 years ago
|
@app.route('/')
|
||
|
def index():
|
||
|
return render_template('index.html')
|
||
|
|
||
3 years ago
|
|
||
3 years ago
|
if __name__ == '__main__':
|
||
|
app.run(host='0.0.0.0', port=args.port, debug=True)
|