Skip to content

Commit

Permalink
optimize DataSummaryET
Browse files Browse the repository at this point in the history
  • Loading branch information
ckeys committed Aug 23, 2022
1 parent 1bd191f commit 58344be
Show file tree
Hide file tree
Showing 3 changed files with 436 additions and 6 deletions.
5 changes: 0 additions & 5 deletions byzer-extension-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@
<artifactId>openmldb-native</artifactId>
<version>0.5.2</version>
</dependency>
<dependency>
<groupId>org.pegdown</groupId>
<artifactId>pegdown</artifactId>
<version>1.6.0</version>
</dependency>
</dependencies>

<profiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import tech.mlsql.common.utils.log.Logging
import tech.mlsql.dsl.CommandCollection
import tech.mlsql.ets.register.ETRegister
import tech.mlsql.plugins.mllib.ets._
import tech.mlsql.plugins.mllib.ets.fe.{DataTranspose, OnehotExt, PSIExt, SQLDataSummary, SQLDescriptiveMetrics, SQLMissingValueProcess, SQLPatternDistribution, SQLUniqueIdentifier}
import tech.mlsql.plugins.mllib.ets.fe.{DataTranspose, OnehotExt, PSIExt, SQLDataSummary, SQLDataSummaryT, SQLDescriptiveMetrics, SQLMissingValueProcess, SQLPatternDistribution, SQLUniqueIdentifier}
import tech.mlsql.plugins.mllib.ets.fintech.scorecard.{SQLBinning, SQLScoreCard}
import tech.mlsql.version.VersionCompatibility

Expand All @@ -21,6 +21,7 @@ class MLSQLMllib extends tech.mlsql.app.App with VersionCompatibility with Loggi
ETRegister.register("TakeRandomSampleExt", classOf[TakeRandomSampleExt].getName)
ETRegister.register("ColumnsExt", classOf[ColumnsExt].getName)
ETRegister.register("DataSummary", classOf[SQLDataSummary].getName)
ETRegister.register("DataSummaryT", classOf[SQLDataSummaryT].getName)
ETRegister.register("DataMissingValueProcess", classOf[SQLMissingValueProcess].getName)
ETRegister.register("Binning", classOf[SQLBinning].getName)
ETRegister.register("ScoreCard", classOf[SQLScoreCard].getName)
Expand Down
Loading

0 comments on commit 58344be

Please sign in to comment.