代码拉取完成,页面将自动刷新
# -*- coding: gbk -*-
####################################################################
# Original work Copyright 2018 The Google AI Language Team Authors.
# Modified work Copyright 2019 Rowan Zellers
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# 本项目仅限于技术交流用途,包括所有开源部分,禁止用于任何商业用途
#####################################################################
# 使用搭载好的EssayKilelrBrain各个模块构造pipeline,端到端输出文本
# 部分核心代码已加密,若要获取完整版本请附上个人/研究机构链接证明
from absl import app
from absl import flags
import collections
import tensorflow as tf
import sys
import requests
import numpy as np
import pandas as pd
import time
import random
import logging
from AutoBrainBase import *
from RecognizaitonNetwork.text_detection_video import *
from RecognizaitonNetwork.crnn import *
from RecognizaitonNetwork.train import *
from LanguageNetwork.GPT2.scripts import *
from LanguageNetwork.BERT.models import *
from LanguageNetwork.BERT.utils import *
from ScoringNetwork.AutoFormatter import *
from ScoringNetwork import *
from utils import *
tf.logging.set_verbosity(tf.logging.ERROR)
tf.get_logger().setLevel('INFO')
tf.autograph.set_verbosity(1)
FLAGS = flags.FLAGS
flags.DEFINE_string('gpu', None, 'comma separated list of GPU(s) to use.')
result = []
class EssayKillerPipeline(AutoBrainBase):
"""
@params
input_feed: text input_feed
sequence_len: sequence length
...
In order to prevent the EssayKiller framework from being maliciously registered, used or
copied, the pipeline core code and construction classes are temporarily not open-sourced
If you have academic needs, please bring an individual or institution's academic needs
statement and send an email to deanyuton@gmail.com. According to the stated information,
I will send the full version of the code and test data to the given mailbox.
Thanks for understanding.
为防止自动化写作框架被人恶意抢注、利用或复刻,pipeline核心代码与构造类暂不开源
若有学术需要,请带上个人或机构的学术需求陈述,发送邮件到deanyuton@gmail.com
根据陈述信息,我将会发送完整版的代码与测试数据到给定的邮箱。
感谢理解~
"""
def __init__():
self.config = FLAGS.config
pass
def enable_textdetect(self):
'''
开启视频检测,从硬件输入端获取视频流文件
硬件配置:Logitech C930C
@params:video视频流输入端口
'''
pass
def generage_text_from_videostream(self):
pass
def preprocess_exam(self):
pass
def summarize_exam_topic(self):
pass
def sentence2network(self):
pass
def essay_writter_core(self):
pass
def scoring_to_best_essay(self):
pass
def formatting_essay_output(self):
pass
def main(argv):
del argv
if FLAGS.gpu:
os.environ['CUDA_VISIBLE_DEVICES'] = FLAGS.gpu
else:
print('Please assign GPUs.')
exit()
print("test sample in trained model...")
if __name__ == "__main__":
try:
pass
except:
print("pipeline has failed...")
#dicts = result[0].split(":")
#plexity = result.get['ppl']
print("the final ppl score is: \n",scores )
print("the final text output as :", text)
print(sum(result))
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。