Hello all,
Does anybody know any framework/code for IGD indicator, GD indicator in python or julia programming?.Also Is it ok to use a hypervolume indicator when it is biased with respect to reference points?
This may help in IGD calculation
def calculateigd(truepf, pf): """Calculate IGD value for truepf and pf Parameters ---------- truepf: "true" pf value pf: estimated pf value Returns ------- igd: IGD value """ Y = scipy.spatial.distance.cdist(truepf, pf, 'euclidean') mindist = np.min(Y, axis=1) igd = np.mean(mindist) return igd
Here is another implementation
please see the attached file for both of them
def IGD(truePF, PF):
distEuclidean = []
sumMin = 0
for i in truePF:
for x in PF:
d = distance.euclidean(i, x)
distEuclidean.append(d)
distEuclidean.sort(reverse=True)
sumMin += distEuclidean.pop()
distEuclidean.clear()
igdVal = sumMin / len(truePF)
return igdVal
Thank you so much Ahmad Alhindi . This was really helpful
All the externally aided projects which are funded have to go through rigorous checks and appraisals on a continued basis depending on the work plan. In order to meet the timeline the scholars...
31 May 2020 9,111 4 View
It has been alarming that human activities had increased many proportions and had led to many anthropogenic activities which had been directly and indirectly affecting the natural ecosystems....
29 April 2020 7,424 1 View
27 March 2020 5,699 3 View
It is seen that conventional breeding is losing its charm in research as compared to modern biotechnological methods even though it is not preferred in terms of its field deployment. Moreover, if...
26 March 2020 3,225 20 View
Can anyone give the scientific explanation.
12 March 2020 7,337 2 View
when adding the Fe compound in the water it gets deprotonated and from strong acid. 1.adding base leads to salt formation 2.adding buffer solution leads to Fe concentration change.
11 March 2020 1,785 3 View
Hi all, Recently, I have involved in the speaker language identification using i-vector /x-vector based approach. Kindly share any useful packages links in python to compile this research work....
04 February 2020 1,591 2 View
I implemented model predictive control for PMSM in Matlab. I want to incorporate neural network in my work. My system is MIMO system. Give me some suggestions.
14 January 2020 3,542 2 View
Dear researcher, I wish to learn how to measure a cavity or cavity like arrangements present in an organic molecule. For proteins, many more online websites and softwares were available to...
24 August 2019 7,407 2 View
operating system
08 March 2019 1,131 2 View
Hi everyone, I am conducting research for my Master's thesis. I am using PROCESS by Johnson-Neyman to analyze my Moderator model. I test the relationship between Public Service Motivation and...
03 March 2021 2,350 2 View
This is a Buck (step-down) Converter and I am new to this program. I need to program with simplified C block and I actually don't know what to do. Can anyone show me how to do this? Or at least...
02 March 2021 8,233 1 View
Hi, I am trying to construct a multi-layer fibril structure from a single layer in PyMol by translating the layer along the fibril axis. For now, I am able to use the Translate command in PyMol...
02 March 2021 4,569 4 View
For my research i will need to measure plant quantitative traits (especially leaves area and roots length, but would be nice to add some more information). I recently discovered...
01 March 2021 5,035 2 View
I want to do a parameter study of a aixsymmetric cylinder in Abaqus. I want to create several jobs where I get the stresses for 3 different points in my model. These points are defined. I wrote a...
01 March 2021 10,078 1 View
Which is suitable for use with Python? MySQL or SQL Server? What is your suggestion?
01 March 2021 3,422 3 View
Please, if Gaussian Parameter optimization is possible in this code structure
28 February 2021 278 3 View
I wanted to add an extra parameter to the existing Johnson cook equation in the ABAQUS simulation. How to add those extra parameters. Ref: A modified Johnson-Cook material model with strain...
28 February 2021 4,841 3 View
System Description Cuda 11.2 GeForce GTX 1080ti tensorflow version 2.4.1 keras version 2.2.0 python version 3.8 I was getting the below error when I try to run my code on the...
25 February 2021 6,673 2 View
Does data from contact tracing help in establishing patterns of behavior and social interactions that lead to infections? There are cases here in the Philippines where patients have no travel...
25 February 2021 9,002 13 View