Skip to content

Commit 1ceb6b2

Browse files
committed
readNetFromDarknet, readNetFromONNX, readNetFromModelOptimizer
1 parent 3858035 commit 1ceb6b2

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

phpdoc.php

+28-2
Original file line numberDiff line numberDiff line change
@@ -1412,7 +1412,7 @@ function readNetFromTorch(string $filename) {
14121412
* @param string $modelFilename
14131413
* @return Net
14141414
*/
1415-
function readNetFromCaffe(string $protoFilename, $modelFilename) {
1415+
function readNetFromCaffe(string $protoFilename, string $modelFilename) {
14161416

14171417
}
14181418

@@ -1421,6 +1421,32 @@ function readNetFromCaffe(string $protoFilename, $modelFilename) {
14211421
* @param string $modelFilename
14221422
* @return Net
14231423
*/
1424-
function readNetFromTensorflow(string $model, $config) {
1424+
function readNetFromTensorflow(string $model, string $config) {
1425+
1426+
}
1427+
1428+
/**
1429+
* @param string $cfg
1430+
* @param string $weights
1431+
* @return Net
1432+
*/
1433+
function readNetFromDarknet(string $cfg, string $weights) {
1434+
1435+
}
1436+
1437+
/**
1438+
* @param string $model
1439+
* @return Net
1440+
*/
1441+
function readNetFromONNX(string $model) {
1442+
1443+
}
1444+
1445+
/**
1446+
* @param string $model
1447+
* @param string $weights
1448+
* @return Net
1449+
*/
1450+
function readNetFromModelOptimizer(string $model, string $weights) {
14251451

14261452
}

0 commit comments

Comments
 (0)