Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The entry function 'LossMmod_det_bnet_type_create' is not in DlibDotNetNativeDnn.dll ? #230

Open
jeffreyvivian opened this issue Jan 21, 2021 · 1 comment

Comments

@jeffreyvivian
Copy link

There are several functions that are not found in 'DlibDotNetNativeDnn.dll':
LossMmod_det_bnet_type_create
LossMmod_det_anet_type_create
LossMulticlassLogPerPixel_seg_bnet_type_create
LossMulticlassLogPerPixel_seg_anet_type_create

code:
static NativeMethods()
{
WindowsLibraryLoader.LoadLibraries(new[]
{
$"{NativeLibrary}",
$"{NativeDnnLibrary}"
});

        foreach (var builder in new[] {
            LossMetric_anet_type_create(),
            LossMetric_metric_net_type_create()
        })
            LossMetricRegistry_add(builder);
        foreach (var builder in new[] {
            LossMmod_net_type_create(),
            LossMmod_net_type_1_create(),
            LossMmod_net_type_2_create(),
            LossMmod_net_type_3_create(),
            LossMmod_det_bnet_type_create(),
            LossMmod_det_anet_type_create()
        })
            LossMmodRegistry_add(builder);
        foreach (var builder in new[] {
            LossMulticlassLog_net_type_create(),
             LossMulticlassLog_net_1000_type_create(),
             LossMulticlassLog_anet_1000_type_create(),
             LossMulticlassLog_net_type2_create()
        })
            LossMulticlassLogRegistry_add(builder);
        foreach (var builder in new[] {
            LossMulticlassLogPerPixel_net_type_create(),
            LossMulticlassLogPerPixel_anet_type_create(),
            LossMulticlassLogPerPixel_ubnet_type_create(),
            LossMulticlassLogPerPixel_uanet_type_create(),
            LossMulticlassLogPerPixel_seg_bnet_type_create(),
            LossMulticlassLogPerPixel_seg_anet_type_create()
        })
            LossMulticlassLogPerPixelRegistry_add(builder);
    }

What should I do? Thanks for this mistake.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants