Tensorflow NotFoundError:data / mscoco_label_map.pbtxt;没有相应的文件和目录

时间:2018-05-02 15:46:52

标签: tensorflow artificial-intelligence object-detection

我正在尝试从YouTuber sentdex运行this脚本,但是我收到此错误:

union u_t
{
  uint16_t u16;
  uint8_t u8[2];
};
uint16_t Frame2Data(uint8_t *data,uint8_t startBit,uint16_t length)
{
  uint16_t mask;
  uint8_t start;
  uint8_t firstByte,offset;
  uint8_t numShift;
  union u_t ut;
  /*if(length == 8)     //preliminary, has to be fixed by correct function.  
    mask =  0xff;*/
  if(length == 7)
    mask = 0x7F;
  if(length == 10)
    mask = 0x3ff;
  if(length == 12)
    mask = 0xfff;

  firstByte = startBit / 8;
  offset = (firstByte+2) * 8;
  start = startBit + length;
  numShift = offset - start;
  ut.u8[1] = data[firstByte];
  ut.u8[0] = data[firstByte+1];
  return (ut.u16 >> numShift) & mask;
}
int main()
{
  ??????????
  uint8_t sB = 46;
  uint16_t l = 7;
  uint16_t extractValue = Frame2Data(?,sB,l);
  return 0;
}

操作系统:Ubuntu 18.04

Python:2.7

你能帮我吗?

1 个答案:

答案 0 :(得分:0)

如果你提供了你调用的文件/函数来产生回溯,那将会有很大的帮助。但是,如果没有这个并基于以下内容:

tensorflow.python.framework.errors_impl.NotFoundError: data/mscoco_label_map.pbtxt; No such file or directory

* _label_map.pbtxt路径在model.config文件的两行中指定(确切的行号取决于您选择的模型)。看起来训练/测试文件路径中的一个或两个都不正确。