This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ammonite.ops._ | |
import mill._ | |
import mill.util.Ctx | |
import mill.modules.Jvm | |
trait FlywayModule extends JavaModule { | |
def flywayMigrationPaths: T[Seq[PathRef]] = T { resources() } | |
def flywayUser: T[String] | |
def flywayPassword: T[String] | |
def flywayJdbcUrl: T[String] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Created on Dec 10, 2017 | |
@author: jachin,Nie | |
A tf implementation of NFM | |
Reference: | |
[1] Neural Factorization Machines for Sparse Predictive Analytics | |
Xiangnan He,School of Computing,National University of Singapore,Singapore 117417,dcshex@nus.edu.sg | |
Tat-Seng Chua,School of Computing,National University of Singapore,Singapore 117417,dcscts@nus.edu.sg |