use tfjs-tiny-yolov2 codebase
Showing
| ... | @@ -7,7 +7,8 @@ | ... | @@ -7,7 +7,8 @@ |
| "scripts": { | "scripts": { | ||
| "rollup-min": "rollup -c rollup.config.js --environment minify:true", | "rollup-min": "rollup -c rollup.config.js --environment minify:true", | ||
| "rollup": "rollup -c rollup.config.js", | "rollup": "rollup -c rollup.config.js", | ||
| "build": "npm run rollup && npm run rollup-min && tsc", | "build-tsc": "tsc", | ||
| "build": "npm run rollup && npm run rollup-min && npm run build-tsc", | |||
| "test": "karma start" | "test": "karma start" | ||
| }, | }, | ||
| "keywords": [ | "keywords": [ | ||
| ... | @@ -21,7 +22,8 @@ | ... | @@ -21,7 +22,8 @@ |
| "license": "MIT", | "license": "MIT", | ||
| "dependencies": { | "dependencies": { | ||
| "@tensorflow/tfjs-core": "^0.12.14", | "@tensorflow/tfjs-core": "^0.12.14", | ||
| "tfjs-image-recognition-base": "git+https://github.com/justadudewhohacks/tfjs-image-recognition-base.git" | "tfjs-image-recognition-base": "^0.0.0", | ||
| "tfjs-tiny-yolov2": "0.0.2" | |||
| }, | }, | ||
| "devDependencies": { | "devDependencies": { | ||
| "@types/jasmine": "^2.8.8", | "@types/jasmine": "^2.8.8", | ||
| ... | @@ -38,6 +40,6 @@ | ... | @@ -38,6 +40,6 @@ |
| "rollup-plugin-typescript2": "^0.16.1", | "rollup-plugin-typescript2": "^0.16.1", | ||
| "rollup-plugin-uglify": "^4.0.0", | "rollup-plugin-uglify": "^4.0.0", | ||
| "tslib": "^1.9.3", | "tslib": "^1.9.3", | ||
| "typescript": "^2.9.2" | "typescript": "2.8.4" | ||
| } | } | ||
| } | } |
src/commons/convLayer.ts
deleted
100644 → 0
src/commons/types.ts
deleted
100644 → 0
src/tinyYolov2/convWithBatchNorm.ts
deleted
100644 → 0
src/tinyYolov2/extractParams.ts
deleted
100644 → 0
src/tinyYolov2/getDefaultParams.ts
deleted
100644 → 0
src/tinyYolov2/leaky.ts
deleted
100644 → 0
src/tinyYolov2/types.ts
deleted
100644 → 0
Please
register
or
sign in
to comment