删除多余日志输出

This commit is contained in:
2025-03-13 15:43:53 +08:00
parent 232d480ca0
commit eea943bba5
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@yizhi/ai", "name": "@yizhi/ai",
"version": "1.0.3", "version": "1.0.4",
"main": "dist/index.js", "main": "dist/index.js",
"types": "typing/index.d.ts", "types": "typing/index.d.ts",
"scripts": { "scripts": {

View File

@ -63,7 +63,7 @@ export class PFLD extends Model {
const y = pointsBuffer[i + 1] * image.height * ratioHeight; const y = pointsBuffer[i + 1] * image.height * ratioHeight;
points.push({ x, y }); points.push({ x, y });
} }
console.log(points)
return new PFLDResult(points); return new PFLDResult(points);
} }