From f0b5e43ad1ad929c74e1893d8d0835f09c7b1ee5 Mon Sep 17 00:00:00 2001 From: leno3003 Date: Fri, 1 Apr 2022 16:07:40 +0200 Subject: [PATCH] frames evaluation removed --- core/interact/no_interact_dict.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/core/interact/no_interact_dict.py b/core/interact/no_interact_dict.py index 2dfd497..82d84f1 100644 --- a/core/interact/no_interact_dict.py +++ b/core/interact/no_interact_dict.py @@ -1,7 +1,7 @@ -import pickle import json import os +#Sample dictionary of default answers dictionary = { '4' : '\n', '5' : '0', @@ -54,8 +54,3 @@ cmd = 'mkdir DeepFaceLab_Linux/workspace/interact' os.system(cmd) with open('DeepFaceLab_Linux/workspace/interact/interact_dict.json', 'w') as handle: json.dump(dictionary, handle) - -#with open('DeepFaceLab_Linux/workspace/interact/interact_dict.pkl', 'rb') as handle: -# d = pickle.load(handle) -# -#print(d['5'])