フィルターのクリア

GPU Coder for jetson nano

2 ビュー (過去 30 日間)
Yazan
Yazan 2022 年 9 月 28 日
回答済み: Ram Kokku 2022 年 10 月 25 日
Hello everyone,
when we want to generate a Code, we should choose a pretrained net like mobilenetv2() and have an entry-point function for this net, type("mobilenetv2_predict.m"):
% Copyright 2017-2019 The MathWorks, Inc.
function out = mobilenetv2_predict(in)
%#codegen
persistent mynet;
if isempty(mynet)
mynet = coder.loadDeepLearningNetwork('mobilenetv2','mobilenetv2');
end
% pass in input
out = mynet.predict(in);
My question is: what if i train a standalone network for my project?
How can i put it in this function to deploy it on Jetson Nano?
Thank you very much

回答 (1 件)

Ram Kokku
Ram Kokku 2022 年 10 月 25 日
Hi Yazan,
Thanks for reaching out. We have many examples showcasing deep learning deployment on jetson. please take a look
Jetson example:
Mobilenetv2 example:
Link to the example page:

カテゴリ

Help Center および File ExchangeDeep Learning with GPU Coder についてさらに検索

タグ

製品


リリース

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by