Is it possible to add custom matrix in javamelody? - java-melody

We have different matrix in javamelody page. Is it possible to define some custom matrix?

The answer is no.
Read the javamelody docs if you want to know the features.

Related

what are 'NET USE' possible outputs?

The question is : what are the NET USE possible outputs?
You can drown yourself with websites explaining how to use NET USE command, but not a single one about what is coming out of it.
In my case I'm interested in the various error messages, and the interaction with the Powershell automatic variable $LASTEXITCODE. I want to handle its output correctly but I don't know what can even happen (and no, I won't use New-PSDrive).
Does someone knows the what or where I can find the information ?
Thanks
You can use the example in https://www.compatdb.org/forums/topic/20487-net-use-return-code/ to obtain a list of the numerical codes for your evaluation.
If you want to dig deeper take you need to download the Win32 SDK and go through the definitions in the header files (see https://learn.microsoft.com/en-us/windows/win32/api/winnetwk/ns-winnetwk-netresourcea etc).

How to use CIDEr metric

I see that CIDEr is a universal metric in Image Captioning.
I want to use this metric on my project, but I can't find any library. There is few info. CIDEr can only be seen in paper. And I can have searched just BLUE library which is used to evaluate NLP.
Anybody knows how to use this metric?
If there is no way, how can I evaluate my image-captioning model?
p.s. I use OFA model on my project.
https://github.com/tylin/coco-caption
Here is the github link which can be the answer. I can use how to apply CIDEr metric on my project by referring this repository.

saliency map for multi-class multi-label classification?

I have found ways to do CAM/saliency map for multi class, but not multi label multi class. Do you know of any resources I can use to do it so I don't reinvent the wheel, or rather do you have advice for implementing it?
My specific use case is that I have a transfer learned ResNet that outputs a binary 1x11 vector. Each entry corresponds to presence of a certain feature in the input image. I want to be able to get a saliency map for each feature, so I can know what the network was looking at when deciding if each image has each of those features.

is it possible to refer to javascript libraries from couchbase?

In couchbase i write the views in javascript. However as my views become more and more complex i need to share some javascript code by means of having libraries of javascript and referencing them (hopefully) from my map reducers.
is that thing possible?
thanks
It is not possible to share code between views in Couchbase, because of the way views are stored internally. You can however have a look at couchapp, which allows you to insert Javascript code from different files into view maps. I think it uses couchdbkit for that.
EDIT
It appears that Erica has taken over from couchapp.

SSIS Custom Transforms - what is MappedColumnID

SSIS developer documentation is notoriously terse, and I've scoured Google looking for an answer on this...
What is the MappedColumnID property (available on input, output and external metadata columns) all about? It doesn't appear to do anything useful.
Perhaps to rephrase the question... how do I achieve mappings between meta data columns and input / output columns? I know about the ExternalMetaDataColumnID property... but then how/where does MappedColumnID come into play?
Moreover, components like the OLEDB destination have a column mapping editor which appears in both the component UI as well as in the advanced editor. How is this achieved?
MappedColumnID is just an alternative way of identifying the columns instead of using there names.
From MSDN
The use of these properties is not required. These properties provide an easier way for developers to associate related columns, such as input and output columns, in custom data flow components.