预期的str,字节或os.PathLike对象,而不是CalibratedClassifierCV

时间:2018-11-21 06:54:59

标签: python python-3.x mongodb gridfs

我正在尝试使用gridfs将分类器模型保存到mongo数据库中。

    client=MongoClient(url)
    db=client.ticket_advisory    
    fs = GridFS(db, "model_files")  
    fs.put(open(file), mode = 'rb')

但是我遇到一个错误:

expected str, bytes or os.PathLike object, not CalibratedClassifierCV

由于gridfs需要str可读对象,如何使用gridfs保存原始文件?

PS:使用python3.x连接到mongo

0 个答案:

没有答案