Skip to content
Snippets Groups Projects
Commit 11930afe authored by Vojtech Moravec's avatar Vojtech Moravec
Browse files

Added dependecy to apache.commons.math

parent 3f89b41d
Branches
No related tags found
No related merge requests found
...@@ -11,5 +11,6 @@ ...@@ -11,5 +11,6 @@
</content> </content>
<orderEntry type="inheritedJdk" /> <orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Maven: org.apache.commons:commons-math3:3.6.1" level="project" />
</component> </component>
</module> </module>
\ No newline at end of file
...@@ -20,5 +20,13 @@ ...@@ -20,5 +20,13 @@
</plugins> </plugins>
</build> </build>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.6.1</version>
</dependency>
</dependencies>
</project> </project>
\ No newline at end of file
import org.apache.commons.math3.distribution.CauchyDistribution;
import quantization.LloydMaxU16ScalarQuantization; import quantization.LloydMaxU16ScalarQuantization;
import quantization.U16;
import quantization.Utils; import quantization.Utils;
import java.io.FileNotFoundException; import java.io.FileNotFoundException;
public class DataCompressor { public class DataCompressor {
public static void main(String[] args) throws FileNotFoundException { public static void main(String[] args) throws FileNotFoundException {
...@@ -15,5 +17,6 @@ public class DataCompressor { ...@@ -15,5 +17,6 @@ public class DataCompressor {
quantization.train(); quantization.train();
System.out.println("Finished learning..."); System.out.println("Finished learning...");
} }
} }
package quantization.jade;
public class Individual {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment