训练损失在检测器2中没有减少

问题描述

我正在使用detectron2来训练自定义模型来检测文档的布局,其中包括['header','title','text','form','footer','table','list','数字']。训练超过 15000 次迭代后,损失并没有减少。 我有大约 3000 个训练样本的数据。

我的配置文件看起来像-

"use strict";
const functions = require("firebase-functions");
const admin = require("firebase-admin");
const fetch = require("node-fetch")
exports.sendslackrep = functions.https.onRequest(async(req,res)=>{

    
    res.status(200).send('Got It!'); //can't do this,this will signal termination
    res.write('SUCCESS') //this doesn't seem to work either 
    
    //do intense processing here (4-7s) and resond via response_url from req.body
    return fetch(response_url,messageDetails)
  });

我该如何解决这个问题?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)