train
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.ethteck.decodetect</groupId>
<artifactId>train</artifactId>
<version>0.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>decodetect</artifactId>
<groupId>com.ethteck.decodetect</groupId>
<version>0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>train</artifactId>
<dependencies>
<dependency>
<groupId>com.ethteck.decodetect</groupId>
<artifactId>decodetect-core</artifactId>
<version>0.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.ethteck.decodetect.train.ModelTrainer</mainClass>
<arguments>
<argument>${project.basedir}/src/main/resources/data/train</argument>
<argument>${project.build.directory}/model.mdl</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</project>