【报Bug】 Could not get context for WebGL version 2

文章推薦指數: 80 %
投票人數:10人

【报Bug】 Could not get context for WebGL version 2. bug反馈. 在运行tensorflowjs时会有报警 ... import '@tensorflow/tfjs-backend-webgl'; 文档 问答 注册 登录 赞助 输入关键字或相关内容进行搜索 搜索: 发布问题 1***@qq.com 发布:2021-11-2917:48 更新:2021-11-2923:16 阅读:112 【报Bug】CouldnotgetcontextforWebGLversion2 分类:uni-app bug反馈 产品分类: uniapp/App PC开发环境操作系统: Mac PC开发环境操作系统版本号: 11.5.2(20G95) HBuilderX类型: 正式 HBuilderX版本号: 3.2.16 手机系统: Android 手机系统版本号: Android8.0 手机厂商: 华为 手机机型: mate10 页面类型: vue vue版本: vue2 nvue编译模式: fast 打包方式: 云端 项目创建方式: HBuilderX 示例代码: ‘’‘ 111 444 222 444 444 444 444 import*astffrom'@tensorflow/tfjs'; exportdefault{ data(){ return{ } }, methods:{ sss(){ console.log('ok1') //Defineamodelforlinearregression. constmodel=tf.sequential(); model.add(tf.layers.dense({units:1,inputShape:[1]})); model.compile({loss:'meanSquaredError',optimizer:'sgd'}); //Generatesomesyntheticdatafortraining. constxs=tf.tensor2d([1,2,3,4],[4,1]); constys=tf.tensor2d([1,3,5,7],[4,1]); //Trainthemodelusingthedata. model.fit(xs,ys,{epochs:10}).then(()=>{ //Usethemodeltodoinferenceonadatapointthemodelhasn'tseenbefore: model.predict(tf.tensor2d([5],[1,1])).print(); //Openthebrowserdevtoolstoseetheoutput console.log('ok') }); }, sss2(){ console.log('ok1'); consta=tf.variable(tf.scalar(Math.random())); constb=tf.variable(tf.scalar(Math.random())); constc=tf.variable(tf.scalar(Math.random())); constd=tf.variable(tf.scalar(Math.random())); functionpredict(x){ //y=a*x^3+b*x^2+c*x+d returntf.tidy(()=>{ returna.mul(x.pow(tf.scalar(3)))//a*x^3 .add(b.mul(x.square()))//+b*x^2 .add(c.mul(x))//+c*x .add(d);//+d }); }; functionloss(predictions,labels){ //将labels(实际的值)进行抽象 //然后获取平均数. constmeanSquareError=predictions.sub(labels).square().mean(); returnmeanSquareError; }; constlearningRate=0.5; constoptimizer=tf.train.sgd(learningRate); functiontrain(xs,ys,numIterations=75){ constlearningRate=0.5; constoptimizer=tf.train.sgd(learningRate); for(letiter=0;iter{ constpredsYs=predict(xs); returnloss(predsYs,ys); }); }; }; } } } ’‘’ 操作步骤: 运行到内置模拟器中 预期结果: 应该是GL渲染到图片 实际结果: 发生报警,没有显示 bug描述: 在运行tensorflowjs时会有报警 CouldnotgetcontextforWebGLversion2 2021-11-2917:48 负责人:无 分享 没有找到相关结果 已邀请: 与内容相关的链接 提交 1个回复 1***@qq.com (作者) ''' import'@tensorflow/tfjs-backend-webgl'; import'@tensorflow/tfjs-core/dist/public/chained_ops/sum';//addthe'sum'chainedoptoalltensors ''' 新tf需要添加这些引用,之后警报会消除。

2021-11-2923:16 分享 评论 取消 为什么被折叠? 0个回复被折叠 要回复问题请先登录或注册 付费技术咨询 公告 更多> uni-app提供开箱即用的SSR支持 uni-app项目支持vue3.0介绍,及升级指南 Android应用市场上架uni-app(5+App)应用合规指南,以及收到工信部或应用市场合规整改通知的解决办法 2021年插件大赛获奖结果 2021插件大赛和行业服务商招标启动!200万元等你来分! 相关问题 plus.runtime.version是什么版本号 java代码中context.getApplicationInfo().uid对应的native.js的uid怎么获取 安装wgt文件失败[-1205]:WGT安装包中manifest.json文件的version版本不匹配 uni-app真机编译出错Errorinrender:"TypeError:Cannotsetproperty'version'ofundefined" uniapp原生开发获取Context 获取APP的版本信息Version不正确 广告 退出全屏模式 全屏模式 回复 友情链接 W3Cschool 优势智云 黑马程序员 程序员客栈 个推 锐亚教育 即速应用 DCloud新闻 InfoQ 美信拓扑 HeapDump性能社区 uni-app可视化 申请友链 DCloud即数字天堂(北京)网络技术有限公司是W3C成员及HTML5中国产业联盟发起单位 京ICP备12046007号-4 | 京公网安备:11010802035340号 | 国家信息安全等级保护三级,证书编号:11010813802-20001 PoweredByWeCenter2.5.8 | 商务合作:[email protected]、广告投放



請為這篇文章評分?