niuzhiheng / caffe

Caffe
http://caffe.berkeleyvision.org/
BSD 2-Clause "Simplified" License
317 stars 129 forks source link

create ImageNet leveldb file fail under windows 7 64bit #70

Closed civilman628 closed 7 years ago

civilman628 commented 9 years ago

is there anyone create ImageNet levelDB pass under window 7 OS? on my side its fail. I can see log file is created, but I do not know how to open it, because it is not txt but some kind of compressed log. is there anyone know how to read this kind of google log? capture

ZxYuan commented 9 years ago

Actually you have created the levelDB file. In levelDB, a log file (.log) stores a sequence of recent updates. Each update is appended to the current log file. When the log file reaches a pre-determined size (approximately 4MB by default), it is converted to a sorted table (.sst) and a new log file is created for future updates. Please refer to the link below if you'd like to know the format of log files. https://raw.githubusercontent.com/google/leveldb/master/doc/log_format.txt

Dev2022 commented 8 years ago

@civilmanxx I also have the same issue. Have you found how it works? Please let me know how to proceed. Thanks