FinGPT 在执行`infer.ipynb`时,文件里面的两个目录问题

agyaoht7  于 6个月前  发布在  其他
关注(0)|答案(2)|浏览(193)

root_path = "/root/autodl-tmp/results"
instructions = pd.read_csv(f"{root_path}/results_new.csv")
instructions.shape
ori_instructions = pd.read_csv(f"{root_path}/results.csv")
ori_instructions.shape
这两个文件从哪里获取的,没有看到生成的代码

guykilcj

guykilcj1#

这两个文件的核心内容是原模型和微调后的模型在情感分类输出上的不同,因此您可以直接使用模型输出的结果进行比较,同时保存的代码在下面的一段Cell中,具体代码为:

instructions.to_csv(f"{root_path}/results_new.csv")
ori_instructions.to_csv(f"{root_path}/results.csv")

这两个文件的核心内容是原模型和微调后的模型在情感分类输出上的不同,因此您可以直接使用模型输出的结果进行比较,同时保存的代码在下面的一段Cell中,具体代码为:

instructions.to_csv(f"{root_path}/results_new.csv")
ori_instructions.to_csv(f"{root_path}/results.csv")
de90aj5v

de90aj5v2#

root_path = "/root/autodl-tmp/results" instructions = pd.read_csv(f"{root_path}/results_new.csv") instructions.shape ori_instructions = pd.read_csv(f"{root_path}/results.csv") ori_instructions.shape
这两个文件从哪里获取的,没有看到生成的代码
请问您是如何解决的呢
还有codename这份问题

相关问题