コード例 #1
0
ファイル: app.py プロジェクト: rebeccastandig/TheMATCProject
def vis_sc():
	words = model.final_tags_pos("SC")
	return render_template("vis_pos.html", words=words, pos='SC')
コード例 #2
0
ファイル: app.py プロジェクト: rebeccastandig/TheMATCProject
def vis_pd():
	words = model.final_tags_pos("PD")
	return render_template("vis_pos.html", words=words, pos='PD')
コード例 #3
0
ファイル: app.py プロジェクト: rebeccastandig/TheMATCProject
def vis_ev():
	words = model.final_tags_pos("EV")
	return render_template("vis_pos.html", words=words, pos='EV')
コード例 #4
0
ファイル: app.py プロジェクト: rebeccastandig/TheMATCProject
def vis_op():
	words = model.final_tags_pos("OP")
	return render_template("vis_pos.html", words=words, pos='OP')
コード例 #5
0
ファイル: app.py プロジェクト: rebeccastandig/TheMATCProject
def vis_i():
	words = model.final_tags_pos("I")
	return render_template("vis_pos.html", words=words, pos='I')
コード例 #6
0
ファイル: app.py プロジェクト: rebeccastandig/TheMATCProject
def vis_sc():
    words = model.final_tags_pos("SC")
    return render_template("vis_pos.html", words=words, pos='SC')
コード例 #7
0
ファイル: app.py プロジェクト: rebeccastandig/TheMATCProject
def vis_ev():
    words = model.final_tags_pos("EV")
    return render_template("vis_pos.html", words=words, pos='EV')
コード例 #8
0
ファイル: app.py プロジェクト: rebeccastandig/TheMATCProject
def vis_pd():
    words = model.final_tags_pos("PD")
    return render_template("vis_pos.html", words=words, pos='PD')
コード例 #9
0
ファイル: app.py プロジェクト: rebeccastandig/TheMATCProject
def vis_i():
    words = model.final_tags_pos("I")
    return render_template("vis_pos.html", words=words, pos='I')
コード例 #10
0
ファイル: app.py プロジェクト: rebeccastandig/TheMATCProject
def vis_op():
    words = model.final_tags_pos("OP")
    return render_template("vis_pos.html", words=words, pos='OP')