Skip to content

Commit 79255f0

Browse files
committed
Remove debug logs
1 parent f534174 commit 79255f0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/models.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,6 @@ async function getSession(pretrained_model_name_or_path, fileName, options) {
296296
if (!apis.IS_NODE_ENV) {
297297
session_options.externalData = externalData;
298298
}
299-
console.log('externalData ready')
300299
}
301300

302301
if (selectedDevice === 'webgpu') {
@@ -332,7 +331,6 @@ async function constructSessions(pretrained_model_name_or_path, names, options)
332331
return Object.fromEntries(await Promise.all(
333332
Object.keys(names).map(async (name) => {
334333
const { buffer_or_path, session_options, session_config } = await getSession(pretrained_model_name_or_path, names[name], options);
335-
console.log( { buffer_or_path, session_options, session_config } )
336334
const session = await createInferenceSession(buffer_or_path, session_options, session_config);
337335
return [name, session];
338336
})

0 commit comments

Comments
 (0)