-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
210 lines (199 loc) · 7.3 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<?xml version="1.0" encoding="UTF-8"?>
<!--
Median Relational Generalized Learning Vector Quantization
Copyright (C) 2017-2018
Benjamin Paaßen
AG Machine Learning
Centre of Excellence Cognitive Interaction Technology (CITEC)
University of Bielefeld
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.cit-ec.ml</groupId>
<artifactId>mrglvq</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<name>Median Relational Generalized Learning Vector Quantization</name>
<description>
This project contains a Java implementation of median relational generalized learning vector
quantization as proposed by Nebel, Hammer, Frohberg, and Villmann
(2015, doi:10.1016/j.neucom.2014.12.096). Given a matrix of pairwise distances D and a
vector of labels Y it identifies prototypical data points (i.e. rows of D) which help
to classify the data set using a simple nearest neighbor rule. In particular, the algorithm
optimizes the generalized learning vector quantization cost function (Sato and Yamada, 1995)
via an expectation maximization scheme where in each iteration one prototype 'jumps' to
another data point in order to improve the cost function. If the cost function can not be
improved anymore for any of the data points, the algorithm terminates.
</description>
<url>https://gitlab.ub.uni-bielefeld.de/bpaassen/median_relational_glvq</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<netbeans.hint.license>gpl_license_header_mrglvq</netbeans.hint.license>
</properties>
<licenses>
<license>
<name>The GNU General Public License, Version 3</name>
<url>https://gnu.org/licenses/gpl.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Benjamin Paaßen</name>
<email>[email protected]</email>
<organization>Centre of Excellence - Cognitive Interaction Technology (CITEC),
Faculty of Technology,
Bielefeld University</organization>
<organizationUrl>https://cit-ec.de/tcs</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://gitlab.ub.uni-bielefeld.de/bpaassen/median_relational_glvq.git</connection>
<developerConnection>scm:git:https://gitlab.ub.uni-bielefeld.de/bpaassen/median_relational_glvq.git</developerConnection>
<url>https://gitlab.ub.uni-bielefeld.de/bpaassen/median_relational_glvq</url>
</scm>
<dependencies>
<dependency>
<groupId>de.cit-ec.ml</groupId>
<artifactId>rng</artifactId>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- Default build properties -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<!-- javadoc plugin for javadoc generation without Netbeans -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<bottom>Copyright (C) 2017-2018 Benjamin Paaßen, AG Machine Learning, Centre of Excellence Cognitive Interaction Technology (CITEC), University of Bielefeld, licensed under the GPL v. 3: http://openresearch.cit-ec.de/projects/tcs . This documentation is licensed under the conditions of CC-BY-SA 4.0: https://creativecommons.org/licenses/by-sa/4.0/</bottom>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<!-- Profile for including all dependencies -->
<profile>
<id>include</id>
<build>
<plugins>
<!-- Assembly plugin for including dependencies in the .jar -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<!-- This is a special profile for deploying a version, which generates
everything the mvn central repository requires. For all non-deploying builds
this is irrelevant. -->
<profile>
<id>release</id>
<build>
<plugins>
<!-- Nexus Staging Plugin for Deploying to central repository -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- Maven Source Plugin for generating a jar containing all sources.
This is required by the maven central repository. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Maven Javadoc Plugin for generating a jar containing all javadoc.
This is required by the maven central repository. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Maven PGP Plugin for generating a pgp signature of the project.
This is required by the maven central repository. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>