博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
代码1
阅读量:5881 次
发布时间:2019-06-19

本文共 1387 字,大约阅读时间需要 4 分钟。

需要将模型中对test数据的prediction值进行分类,分类标准是大于0.5的为1类,即相似,小于0.5的为0类,即不相似,并写入文件。

字符到底是什么

文件读入写出都是字符? 

字符大小比较,比较那个0.5错没有,accsi表中没有0.5,只有0到9,那怎么比较124和125的字符串呢?

 

错误1:

f = open('/home/xbwang/xingyu/predictions/results-dependency.1l.150d.epoch-1.0.31137.10005.pred','r')for line in f:    #print(line)    if line>0.5 :        line = 1    elif line<0.5 :        line = 0    print(line)    f1=open('/home/xbwang/Desktop/another-results-dependency.1l.150d.epoch-1.0.35192.10005.pred','a')    f1.write(line+'\n') 命令行报错误:Traceback (most recent call last):         File "count.py",line 8,in 
          f1.write(line+'\n')        TypeError: unsupported operand type(s) for +: 'int' and 'str'

错误2:

f = open('/home/xbwang/xingyu/predictions/results-dependency.1l.150d.epoch-1.0.31137.10005.pred','r')for line in f:    #print(line)     #if line>0.5 :     #    print(line)    if line>0.5 :        line = '1'       elif line<0.5 :        line = '0'    #print(line)    f1=open('/home/xbwang/Desktop/another-results-dependency.1l.150d.epoch-1.0.35192.10005.pred','a')    f1.write(line+'\n') 错误:所要写入的文件里全是1

正确代码:

f = open('/home/xbwang/xingyu/predictions/results-dependency.1l.150d.epoch-1.0.31137.10005.pred','r')for line in f:    #print(line)    if line>'0.5' :        line = '1'    elif line<'0.5' :        line = '0'    print(line)    f1=open('/home/xbwang/Desktop/sb.txt','a')    f1.write(line+'\n')

 

转载地址:http://ffpix.baihongyu.com/

你可能感兴趣的文章
[Contiki系列论文之1]Contiki——为微传感器网络而生的轻量级的、灵活的操作系统...
查看>>
Android 网络编程 记录
查看>>
微软同步发行Windows 10和Windows 10 Mobile系统更新
查看>>
Zeppelin的入门使用系列之使用Zeppelin运行shell命令(二)
查看>>
form表单下的button按钮会自动提交表单的问题
查看>>
那些年追过的......写过的技术博客
查看>>
python基础教程_学习笔记19:标准库:一些最爱——集合、堆和双端队列
查看>>
C# 解决窗体闪烁
查看>>
CSS魔法堂:Transition就这么好玩
查看>>
【OpenStack】network相关知识学习
查看>>
centos 7下独立的python 2.7环境安装
查看>>
[日常] 算法-单链表的创建
查看>>
前端工程化系列[01]-Bower包管理工具的使用
查看>>
使用 maven 自动将源码打包并发布
查看>>
Spark:求出分组内的TopN
查看>>
Python爬取豆瓣《复仇者联盟3》评论并生成乖萌的格鲁特
查看>>
关于跨DB增量(增、改)同步两张表的数据小技巧
查看>>
学员会诊之03:你那惨不忍睹的三层架构
查看>>
vue-04-组件
查看>>
Golang协程与通道整理
查看>>