-
Notifications
You must be signed in to change notification settings - Fork 834
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: rename mmlspark to synapseml (#1204)
- Loading branch information
1 parent
ecc6868
commit 383cb95
Showing
555 changed files
with
2,287 additions
and
2,311 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,10 @@ import scala.xml.transform.{RewriteRule, RuleTransformer} | |
import BuildUtils._ | ||
import xerial.sbt.Sonatype._ | ||
|
||
val condaEnvName = "mmlspark" | ||
val condaEnvName = "synapseml" | ||
val sparkVersion = "3.1.2" | ||
name := "mmlspark" | ||
ThisBuild / organization := "com.microsoft.ml.spark" | ||
name := "synapseml" | ||
ThisBuild / organization := "com.microsoft.azure" | ||
ThisBuild / scalaVersion := "2.12.10" | ||
|
||
val scalaMajorVersion = 2.12 | ||
|
@@ -118,7 +118,7 @@ generatePythonDoc := { | |
).value | ||
val targetDir = artifactPath.in(packageBin).in(Compile).in(root).value.getParentFile | ||
val codegenDir = join(targetDir, "generated") | ||
val dir = join(codegenDir, "src", "python", "mmlspark") | ||
val dir = join(codegenDir, "src", "python", "synapse","ml") | ||
join(dir, "__init__.py").createNewFile() | ||
runCmd(activateCondaEnv.value ++ Seq("sphinx-apidoc", "-f", "-o", "doc", "."), dir) | ||
runCmd(activateCondaEnv.value ++ Seq("sphinx-build", "-b", "html", "doc", "../../../doc/pyspark"), dir) | ||
|
@@ -145,7 +145,7 @@ publishDocs := { | |
uploadToBlob(unifiedDocDir.toString, version.value, "docs") | ||
} | ||
|
||
val release = TaskKey[Unit]("release", "publish the library to mmlspark blob") | ||
val release = TaskKey[Unit]("release", "publish the library to synapseml blob") | ||
release := Def.taskDyn { | ||
val v = isSnapshot.value | ||
if (!v) { | ||
|
@@ -159,7 +159,7 @@ release := Def.taskDyn { | |
} | ||
} | ||
|
||
val publishBadges = TaskKey[Unit]("publishBadges", "publish badges to mmlspark blob") | ||
val publishBadges = TaskKey[Unit]("publishBadges", "publish badges to synapseml blob") | ||
publishBadges := { | ||
def enc(s: String): String = { | ||
s.replaceAllLiterally("_", "__").replaceAllLiterally(" ", "_").replaceAllLiterally("-", "--") | ||
|
@@ -205,8 +205,8 @@ lazy val core = (project in file("core")) | |
sbtVersion, | ||
baseDirectory | ||
), | ||
name := "mmlspark-core", | ||
buildInfoPackage := "com.microsoft.ml.spark.build", | ||
name := "synapseml-core", | ||
buildInfoPackage := "com.microsoft.azure.synapse.ml.build", | ||
): _*) | ||
|
||
lazy val deepLearning = (project in file("deep-learning")) | ||
|
@@ -217,23 +217,23 @@ lazy val deepLearning = (project in file("deep-learning")) | |
"com.microsoft.cntk" % "cntk" % "2.4", | ||
"com.microsoft.onnxruntime" % "onnxruntime_gpu" % "1.8.1" | ||
), | ||
name := "mmlspark-deep-learning", | ||
name := "synapseml-deep-learning", | ||
): _*) | ||
|
||
lazy val lightgbm = (project in file("lightgbm")) | ||
.enablePlugins(SbtPlugin) | ||
.dependsOn(core % "test->test;compile->compile") | ||
.settings(settings ++ Seq( | ||
libraryDependencies += ("com.microsoft.ml.lightgbm" % "lightgbmlib" % "3.2.110"), | ||
name := "mmlspark-lightgbm" | ||
name := "synapseml-lightgbm" | ||
): _*) | ||
|
||
lazy val vw = (project in file("vw")) | ||
.enablePlugins(SbtPlugin) | ||
.dependsOn(core % "test->test;compile->compile") | ||
.settings(settings ++ Seq( | ||
libraryDependencies += ("com.github.vowpalwabbit" % "vw-jni" % "8.9.1"), | ||
name := "mmlspark-vw" | ||
name := "synapseml-vw" | ||
): _*) | ||
|
||
lazy val cognitive = (project in file("cognitive")) | ||
|
@@ -242,15 +242,15 @@ lazy val cognitive = (project in file("cognitive")) | |
.settings(settings ++ Seq( | ||
libraryDependencies += ("com.microsoft.cognitiveservices.speech" % "client-sdk" % "1.14.0"), | ||
resolvers += speechResolver, | ||
name := "mmlspark-cognitive" | ||
name := "synapseml-cognitive" | ||
): _*) | ||
|
||
lazy val opencv = (project in file("opencv")) | ||
.enablePlugins(SbtPlugin) | ||
.dependsOn(core % "test->test;compile->compile") | ||
.settings(settings ++ Seq( | ||
libraryDependencies += ("org.openpnp" % "opencv" % "3.2.0-1"), | ||
name := "mmlspark-opencv" | ||
name := "synapseml-opencv" | ||
): _*) | ||
|
||
lazy val root = (project in file(".")) | ||
|
@@ -265,7 +265,7 @@ lazy val root = (project in file(".")) | |
.enablePlugins(ScalaUnidocPlugin && SbtPlugin) | ||
.disablePlugins(CodegenPlugin) | ||
.settings(settings ++ Seq( | ||
name := "mmlspark", | ||
name := "synapseml", | ||
)) | ||
|
||
val setupTask = TaskKey[Unit]("setup", "set up library for intellij") | ||
|
@@ -278,8 +278,8 @@ setupTask := { | |
} | ||
|
||
sonatypeProjectHosting := Some( | ||
GitHubHosting("Azure", "MMLSpark", "[email protected]")) | ||
homepage := Some(url("https://github.com/Azure/mmlspark")) | ||
GitHubHosting("Azure", "SynapseML", "[email protected]")) | ||
homepage := Some(url("https://github.com/Microsoft/SynapseML")) | ||
developers := List( | ||
Developer("mhamilton723", "Mark Hamilton", | ||
"[email protected]", url("https://github.com/mhamilton723")), | ||
|
@@ -289,7 +289,7 @@ developers := List( | |
"[email protected]", url("https://github.com/drdarshan")) | ||
) | ||
|
||
licenses += ("MIT", url("https://github.com/Azure/mmlspark/blob/master/LICENSE")) | ||
licenses += ("MIT", url("https://github.com/Microsoft/SynapseML/blob/master/LICENSE")) | ||
|
||
credentials += Credentials("Sonatype Nexus Repository Manager", | ||
"oss.sonatype.org", | ||
|
This file contains 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
This file contains 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
File renamed without changes.
12 changes: 6 additions & 6 deletions
12
...ml/spark/cognitive/AnomalyDetection.scala → ...napse/ml/cognitive/AnomalyDetection.scala
This file contains 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
4 changes: 2 additions & 2 deletions
4
...rk/cognitive/AnomalyDetectorSchemas.scala → ...ml/cognitive/AnomalyDetectorSchemas.scala
This file contains 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
2 changes: 1 addition & 1 deletion
2
...oft/ml/spark/cognitive/AudioStreams.scala → ...e/synapse/ml/cognitive/AudioStreams.scala
This file contains 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
17 changes: 8 additions & 9 deletions
17
...soft/ml/spark/cognitive/AzureSearch.scala → ...re/synapse/ml/cognitive/AzureSearch.scala
This file contains 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
6 changes: 3 additions & 3 deletions
6
...t/ml/spark/cognitive/AzureSearchAPI.scala → ...synapse/ml/cognitive/AzureSearchAPI.scala
This file contains 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
4 changes: 2 additions & 2 deletions
4
.../spark/cognitive/AzureSearchSchemas.scala → ...pse/ml/cognitive/AzureSearchSchemas.scala
This file contains 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
8 changes: 4 additions & 4 deletions
8
.../ml/spark/cognitive/BingImageSearch.scala → ...ynapse/ml/cognitive/BingImageSearch.scala
This file contains 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
16 changes: 8 additions & 8 deletions
16
...park/cognitive/CognitiveServiceBase.scala → ...e/ml/cognitive/CognitiveServiceBase.scala
This file contains 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
2 changes: 1 addition & 1 deletion
2
...k/cognitive/CognitiveServiceSchemas.scala → ...l/cognitive/CognitiveServiceSchemas.scala
This file contains 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
Oops, something went wrong.