bert-of-theseus icon indicating copy to clipboard operation
bert-of-theseus copied to clipboard

bert-of-theseus via bert4keras

Results 1 bert-of-theseus issues
Sort by recently updated
recently updated
newest added

请问在main函数中的这行代码theseus_model.load_weights('best_theseus.weights')是不是没有用? ``` def main(): # 训练predecessor predecessor_evaluator = Evaluator('best_predecessor.weights') predecessor_model.fit_generator() # 训练theseus theseus_evaluator = Evaluator('best_theseus.weights') theseus_model.fit_generator( ) # 请问:这行代码感觉没有用? theseus_model.load_weights('best_theseus.weights') # 训练successor successor_evaluator = Evaluator('best_successor.weights') successor_model.fit_generator() ```