240 发简信
IP属地:广东
  • qbittorrent-nox.service 的配置有问题

    ubuntu server 20 上面,Type=forking 的配置,在使用 systemctl start qbittorrent-nox 之后 shell 会卡住

    改成 Type=simple 可以解决

    参考: https://blog.csdn.net/Sardkit/article/details/79911925

    Ubuntu安装qbittorrent-nox

    安装add-apt-repository命令 添加qbittorrent-nox的PPA软件源 安装qbittorrent-nox 设置开机启动 相关命令 修改qbittor...

  • golang File 对象封装

    今天拿 Go 完成一个小操作,把一个多层的目录下的 jpg 文件全部检索出来,但是发现 go 原生的文件 api 做起来很麻烦 go 的文件可能需要用到以下的包 io io/...

  • def vec2name(vec):
    ####name = []
    ####temp = 0
    ####for i in vec:
    ########if int(i) == 1:
    ############idx = int(temp) % 26
    ############a = chr(int(idx) + 97)
    ############name.append(a)
    ########temp = temp+1
    ####return "".join(name)

    意会意会

    使用Python+Tensorflow的CNN技术快速识别验证码

    原文地址:https://finthon.com/python-tensorflow-cnn-captcha/ 近年来,机器学习变得愈加火热,中国选手柯洁与AlphaGo的人...

  • 哇,评论把代码的缩进都吃掉了简直可怕.....

    使用Python+Tensorflow的CNN技术快速识别验证码

    原文地址:https://finthon.com/python-tensorflow-cnn-captcha/ 近年来,机器学习变得愈加火热,中国选手柯洁与AlphaGo的人...

  • 这两天重新测试的时候发现好像楼主的vec和name互相转换的代码似乎有些错误?我安装的是python3,然后 vec2name(vec) 这个函数中a = chr ( i + 97 ) 这一句时有错误的,我修改成

    a = chr ( int( i ) + 97) 之后通过了函数测试,但是却无法将vec正确的转换为name,最后我的修改是这样的

    def vec2name(vec):
    name = []
    temp = 0
    for i in vec:
    if int(i) == 1:
    idx = int(temp) % 26
    a = chr(int(idx) + 97)
    name.append(a)
    temp = temp+1
    return "".join(name)

    新的函数我测试是能够正确转换 name 和 vec 的,然后重新跑了一个晚上终于准确率能够超过 50% 了

    使用Python+Tensorflow的CNN技术快速识别验证码

    原文地址:https://finthon.com/python-tensorflow-cnn-captcha/ 近年来,机器学习变得愈加火热,中国选手柯洁与AlphaGo的人...

  • 我用楼主的源代码跑了3000多步还是没到99,是不是没救了啊(捂脸

    使用Python+Tensorflow的CNN技术快速识别验证码

    原文地址:https://finthon.com/python-tensorflow-cnn-captcha/ 近年来,机器学习变得愈加火热,中国选手柯洁与AlphaGo的人...

  • 120
    Ubuntu Server 14.04 安装状态监控Linux Dash

    介绍 Linux Dash是一款非常简单的服务器监控程序,可以通过python、php以及LAMP部署运行,此次安装的环境是Ubuntu Server 14.04 LTS,使...

  • 在ubuntu 16.04上面配置Neo4j生产环境

    生产环境 系统:ubuntu 16.04 LTS安装版本:Neo4j 3.1.3 安装 编写sh脚本 保存为install.sh之后给予运行权限就好了 而后使用命令neo4j...