How to train a caffe model?

后端 未结 2 466
逝去的感伤
逝去的感伤 2021-02-04 08:44

Has anyone successfully trained a caffe model? I have a training ready image set that I would like to use to create a caffe model for use with Google\'s Deep Dream.

The

2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-04 09:02

    Thanks @Franck your code worked for me, but there is an update to iris_tuto.py in the while importing libraries.

    import matplotlib
    matplotlib.use('Agg')
    
    from sklearn.datasets import load_iris
    import sklearn.metrics 
    import numpy as np
    from sklearn.model_selection import StratifiedShuffleSplit
    import matplotlib.pyplot as plt
    import h5py
    import caffe
    import caffe.draw
    import google.protobuf.text_format
    

提交回复
热议问题