https://github.com/thoughtworksinc/deeplearning.scala
A simple library for creating complex neural networks
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (11.2%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
A simple library for creating complex neural networks
Basic Info
- Host: GitHub
- Owner: ThoughtWorksInc
- License: apache-2.0
- Language: Scala
- Default Branch: 3.0.x
- Homepage: http://deeplearning.thoughtworks.school/
- Size: 7.99 MB
Statistics
- Stars: 768
- Watchers: 73
- Forks: 86
- Open Issues: 35
- Releases: 5
Topics
Metadata Files
README.md
DeepLearning.scala is a simple library for creating complex neural networks from object-oriented and functional programming constructs.
- DeepLearning.scala runs on JVM, can be used either in standalone JVM applications or a Jupyter Notebooks.
- DeepLearning.scala is expressive. Various types of neural network layers can be created by composing
map,reduceor other higher order functions. - DeepLearning.scala supports plugins. There are various plugins providing algorithms, models, hyperparameters or other features.
- All the above features are statically type checked.
Features
Differentiable programming
Like other deep learning toolkits, DeepLearning.scala allows you to build neural networks from mathematical formulas. It supports floats, doubles, GPU-accelerated N-dimensional arrays, and calculates derivatives of the weights in the formulas.
Dynamic neural networks
Unlike some other deep learning toolkits, the structure of neural networks in DeepLearning.scala is dynamically determined during running. Our neural networks are programs. All Scala features, including functions, expressions and control flows, are available in neural networks.
For example:
``` scala def ordinaryScalaFunction(a: INDArray): Boolean = { a.signnum.sumT > math.random }
def myDynamicNeuralNetwork(input: INDArray) = INDArrayLayer(monadic[Do] { val outputOfLayer1 = layer1(input).forward.each if (ordinaryScalaFunction(outputOfLayer1.data)) { dynamicallySelectedLayer2(outputOfLayer1).forward.each } else { dynamicallySelectedLayer3(outputOfLayer1).forward.each } }) ```
The above neural network will go into different subnetworks according to an ordinary Scala function.
With the ability of creating dynamic neural networks, regular programmers are able to build complex neural networks from simple code. You write code almost as usual, the only difference being that code based on DeepLearning.scala is differentiable, which enables such code to evolve by modifying its parameters continuously.
Functional programming
DeepLearning.scala 2.0 is based on Monads, which are composable, thus a complex layer can be built from primitive operators or higher order functions like map/reduce. Along with the Monad, we provide an Applicative type class, to perform multiple calculations in parallel.
For example, the previous example can be rewritten in higher-order function style as following:
scala
def myDynamicNeuralNetwork(input: INDArray) = INDArrayLayer {
layer1(input).forward.flatMap { outputOfLayer1 =>
if (ordinaryScalaFunction(outputOfLayer1.data)) {
dynamicallySelectedLayer2(outputOfLayer1).forward
} else {
dynamicallySelectedLayer3(outputOfLayer1).forward
}
}
}
The key construct in DeepLearning.scala 2.0 is the dependent type class DeepLearning, which witnesses a differentiable expression. In other words, given the DeepLearning type class instance, you can activate the deep learning ability of any type.
Object-oriented programming
The code base of DeepLearning.scala 2.0 is organized according to Dependent Object Type calculus (DOT). All features are provided as mixin-able plugins. A plugin is able to change APIs and behaviors of all DeepLearning.scala types. This approach not only resolves expression problem, but also gives plugins the additional ability of virtually depending on other plugins.
For example, when a plugin author is creating the Adagrad optimizer plugin, he does not have to explicitly call functions related to learning rate. However, once a plugin user enables both the Adagrad plugin and the FixedLearningRate plugin, then computation in FixedLearningRate will get called eventually when the Adagrad optimization is executed.
Roadmap
v2.0
Version 2.0 is the current version with all of the above features.
v3.0
- Support element-wise
map/reduceand other higher-order functions on GPU. - Support distributed models and distributed training on Spark.
Links
Acknowledgements
DeepLearning.scala is sponsored by ThoughtWorks.
DeepLearning.scala is heavily inspired by my colleague @MarisaKirisame. Originally, we worked together on a prototype of a deep learning framework, and eventually split our work into this project and DeepDarkFantasy. Other contributors can be found at here.
Related projects
- Shapeless provides a solid foundation for type-level programming used in DeepLearning.scala.
- Scalaz and Algebra provides type classes used in DeepLearning.scala.
- ThoughtWorks Each provides
async/await-like syntax. You may want to use it to control your training process in an imperative style. - nd4j provides numerical computing used in DeepLearning.scala 2.0.
- Compute.scala provides numerical computing used in DeepLearning.scala 3.0.
- RAII.scala, future.scala and tryt.scala provides monadic asynchronous resource management used in DeepLearning.scala.
- Plugins of DeepLearning.scala are based on Factory and other dependent type classes in feature.scala.
- Import.scala is a Scala compiler plugin that enables magic imports. You may need it in those sbt project use DeepLearning.scala plugin hosted on Github Gist.
- DeepLearning.scala can run in Jupyter Scala or Ammonite.
- The unit tests of DeepLearning.scala are written in ScalaTest and example.scala syntax.
- Some type classes in DeepLearning.scala are created by simulacrum's
@typeclassannotation.
Owner
- Name: Thoughtworks incubator
- Login: ThoughtWorksInc
- Kind: organization
- Location: Earth
- Website: https://thoughtworks.com
- Repositories: 321
- Profile: https://github.com/ThoughtWorksInc
This is our sandbox GitHub organization for short-term experiments. For our main Github organisation, please visit @thoughtworks.
GitHub Events
Total
- Issues event: 1
- Watch event: 4
- Fork event: 1
Last Year
- Issues event: 1
- Watch event: 4
- Fork event: 1
Committers
Last synced: 9 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Yang Bo | a****g@t****m | 1,323 |
| 张志豪 | i****o@h****m | 137 |
| travis@localhost | t****s@l****t | 66 |
| rabenda | r****n@g****m | 13 |
| zxiy | z****u@1****m | 13 |
| chank | f****n@q****m | 9 |
| Travis CI User | t****s@e****g | 8 |
| Shao Cheng | a****c@g****m | 6 |
| Scala Steward | me@s****g | 2 |
| Matthew Liu | m****u@t****m | 2 |
| fcbai | p****g@1****m | 1 |
| The Gitter Badger | b****r@g****m | 1 |
| Stephen Samuel | s****m@s****m | 1 |
| Martin Mauch | m****h@g****m | 1 |
| Jan Vincent Liwanag | j****g@g****m | 1 |
| gdemelo | g****m@d****g | 1 |
| tw-data-china | t****a@t****m | 1 |
| 雾雨魔理沙 | l****a@m****e | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 9 months ago
All Time
- Total issues: 58
- Total pull requests: 915
- Average time to close issues: 8 months
- Average time to close pull requests: 3 months
- Total issue authors: 4
- Total pull request authors: 3
- Average comments per issue: 0.64
- Average comments per pull request: 0.17
- Merged pull requests: 389
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 1
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- Atry (2)
- doofin (2)
- Iltotore (1)
- InonS (1)
Pull Request Authors
- scala-steward (72)
- Atry (30)
- nightscape (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 100
- Total downloads: unknown
-
Total dependent packages: 200
(may contain duplicates) -
Total dependent repositories: 0
(may contain duplicates) - Total versions: 796
proxy.golang.org: github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://pkg.go.dev/github.com/ThoughtWorksInc/DeepLearning.scala#section-documentation
- License: apache-2.0
-
Latest release: v2.0.3+incompatible
published over 1 year ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:deeplearning_2.11
DeepLearning
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/deeplearning_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-layers_2.12
plugins-Layers
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-layers_2.12/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-layers_2.11
plugins-Layers
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-layers_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:poly_2.10
Poly
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/poly_2.10/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-implicitssingleton_2.11
plugins-ImplicitsSingleton
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-implicitssingleton_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:layer_2.11
Layer
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/layer_2.11/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-weights_2.11
plugins-Weights
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-weights_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:dsl_2.11
dsl
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/dsl_2.11/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:dsl_2.10
dsl
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/dsl_2.10/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:layer_2.12
Layer
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/layer_2.12/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:poly_2.12
Poly
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/poly_2.12/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:conversion_2.10
Implicit conversion functions that convert from native types to differentiable layers and batches.
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/conversion_2.10/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-floattraining_2.12
plugins-FloatTraining
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-floattraining_2.12/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiableboolean_2.12
DifferentiableBoolean
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiableboolean_2.12/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-doubleliterals_2.12
plugins-DoubleLiterals
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-doubleliterals_2.12/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:conversion_2.11
Implicit conversion functions that convert from native types to differentiable layers and batches.
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/conversion_2.11/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bufferedlayer_2.12
BufferedLayer
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bufferedlayer_2.12/
- License: Apache
-
Latest release: 1.0.0-RC7
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-doublelayers_2.12
plugins-DoubleLayers
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-doublelayers_2.12/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-indarrayliterals_2.11
plugins-INDArrayLiterals
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-indarrayliterals_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:symbolic_2.10
Implicit conversion functions that convert from native types to differentiable layers and tapees.
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/symbolic_2.10/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiable-double_2.11
differentiable-Double
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiable-double_2.11/
- License: Apache
-
Latest release: 2.0.0-M4
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:symbolic_2.11
Implicit conversion functions that convert from native types to differentiable layers and tapees.
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/symbolic_2.11/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-rawdoublelayers_2.12
plugins-RawDoubleLayers
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-rawdoublelayers_2.12/
- License: Apache
-
Latest release: 2.0.0-RC1
published over 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-training_2.11
plugins-Training
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-training_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-logging_2.12
plugins-Logging
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-logging_2.12/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-floatweights_2.11
plugins-FloatWeights
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-floatweights_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-training_2.12
plugins-Training
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-training_2.12/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-doubletraining_2.11
plugins-DoubleTraining
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-doubletraining_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiableany_2.11
DifferentiableAny
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiableany_2.11/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:boolean_2.10
boolean
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/boolean_2.10/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-rawfloatlayers_2.11
plugins-RawFloatLayers
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-rawfloatlayers_2.11/
- License: Apache
-
Latest release: 2.0.0-RC1
published over 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiableint_2.11
DifferentiableInt
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiableint_2.11/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-floatlayers_2.11
plugins-FloatLayers
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-floatlayers_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-products_2.12
plugins-Products
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-products_2.12/
- License: Apache
-
Latest release: 2.2.0-M1
published over 7 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiable-indarray_2.11
differentiable-INDArray
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiable-indarray_2.11/
- License: Apache
-
Latest release: 2.0.0-M4
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:math_2.12
math
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/math_2.12/
- License: Apache
-
Latest release: 2.0.0-M4
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-indarraylayers_2.11
plugins-INDArrayLayers
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-indarraylayers_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-hlists_2.12
plugins-HLists
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-hlists_2.12/
- License: Apache
-
Latest release: 2.2.0-M1
published over 7 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:nd4j-windows-x86_64-cuda-7_5
nd4j-windows-x86_64-cuda-7_5
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/nd4j-windows-x86_64-cuda-7_5/
- License: Apache
-
Latest release: 0.8.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-rawindarraylayers_2.11
plugins-RawINDArrayLayers
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-rawindarraylayers_2.11/
- License: Apache
-
Latest release: 2.0.0-RC1
published over 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:logs_2.11
logs
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/logs_2.11/
- License: Apache
-
Latest release: 2.0.0-M4
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiable-float_2.12
differentiable-Float
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiable-float_2.12/
- License: Apache
-
Latest release: 2.0.0-M4
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:tapefactories_2.12
tapefactories
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/tapefactories_2.12/
- License: Apache
-
Latest release: 2.0.0-M4
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:tapefactories_2.11
tapefactories
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/tapefactories_2.11/
- License: Apache
-
Latest release: 2.0.0-M4
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiableint_2.10
DifferentiableInt
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiableint_2.10/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bpboolean_2.11
BpBoolean
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bpboolean_2.11/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:caller_2.11
Caller
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/caller_2.11/
- License: Apache
-
Latest release: 2.0.0-M3
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-cumulativedoublelayers_2.12
plugins-CumulativeDoubleLayers
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-cumulativedoublelayers_2.12/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:nd4j-macosx-x86_64-cuda-7_5
nd4j-macosx-x86_64-cuda-7_5
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/nd4j-macosx-x86_64-cuda-7_5/
- License: Apache
-
Latest release: 0.8.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:nd4j-linux-ppc64le-cuda-7_5
nd4j-linux-ppc64le-cuda-7_5
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/nd4j-linux-ppc64le-cuda-7_5/
- License: Apache
-
Latest release: 0.8.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiable-float_2.11
differentiable-Float
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiable-float_2.11/
- License: Apache
-
Latest release: 2.0.0-M4
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiabledouble_2.11
DifferentiableDouble
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiabledouble_2.11/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:buffered-layer_2.10
buffered-layer
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/buffered-layer_2.10/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:double_2.11
double
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/double_2.11/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-cumulativefloatlayers_2.12
plugins-CumulativeFloatLayers
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-cumulativefloatlayers_2.12/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-doubleweights_2.12
plugins-DoubleWeights
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-doubleweights_2.12/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bpdouble_2.10
BpDouble
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bpdouble_2.10/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-cumulativefloatlayers_2.11
plugins-CumulativeFloatLayers
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-cumulativefloatlayers_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-names_2.12
plugins-Names
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-names_2.12/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bpdouble_2.11
BpDouble
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bpdouble_2.11/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-doubleweights_2.11
plugins-DoubleWeights
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-doubleweights_2.11/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:double_2.10
double
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/double_2.10/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiableint_2.12
DifferentiableInt
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiableint_2.12/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiableseq_2.10
DifferentiableSeq
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiableseq_2.10/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:sbt-nd4j_2.11
sbt-nd4j
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/sbt-nd4j_2.11/
- License: Apache
-
Latest release: 1.0.0-M0
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:seq_2.11
seq
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/seq_2.11/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:unidoc_2.12
unidoc
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/unidoc_2.12/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiablenothing_2.11
DifferentiableNothing
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiablenothing_2.11/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiablecoproduct_2.10
DifferentiableCoproduct
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiablecoproduct_2.10/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:nd4j-linux-x86_64-cuda-8_0
nd4j-linux-x86_64-cuda-8_0
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/nd4j-linux-x86_64-cuda-8_0/
- License: Apache
-
Latest release: 0.8.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bphlist_2.11
BpHList
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bphlist_2.11/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bpcoproduct_2.11
BpCoproduct
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bpcoproduct_2.11/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiable_2.11
differentiable
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiable_2.11/
- License: Apache
-
Latest release: 2.0.0-M4
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:jupyter-differentiable_2.12
jupyter-differentiable
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/jupyter-differentiable_2.12/
- License: Apache
-
Latest release: 2.0.0-M4
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:nd4j-macosx-x86_64-cuda-8_0
nd4j-macosx-x86_64-cuda-8_0
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/nd4j-macosx-x86_64-cuda-8_0/
- License: Apache
-
Latest release: 0.8.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiablecoproduct_2.11
DifferentiableCoproduct
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiablecoproduct_2.11/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:nd4j-macosx-x86_64-native
nd4j-macosx-x86_64-native
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/nd4j-macosx-x86_64-native/
- License: Apache
-
Latest release: 0.8.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:dynamic-cast_2.10
dynamic-cast
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/dynamic-cast_2.10/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:unidoc_2.10
unidoc
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/unidoc_2.10/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:hlist_2.11
hlist
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/hlist_2.11/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiable_2.12
differentiable
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiable_2.12/
- License: Apache
-
Latest release: 2.0.0-M4
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiablenothing_2.12
DifferentiableNothing
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiablenothing_2.12/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:dynamic-cast_2.11
dynamic-cast
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/dynamic-cast_2.11/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:nd4j-android-x86-native
nd4j-android-x86-native
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/nd4j-android-x86-native/
- License: Apache
-
Latest release: 0.8.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bpnothing_2.10
BpNothing
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bpnothing_2.10/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:plugins-builtins_2.12
plugins-Builtins
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/plugins-builtins_2.12/
- License: Apache
-
Latest release: 2.0.3
published about 8 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bp2darray_2.10
Bp2DArray
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bp2darray_2.10/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:nd4j-windows-x86_64-cuda-8_0
nd4j-windows-x86_64-cuda-8_0
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/nd4j-windows-x86_64-cuda-8_0/
- License: Apache
-
Latest release: 0.8.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bpany_2.10
BpAny
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bpany_2.10/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bpnothing_2.11
BpNothing
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bpnothing_2.11/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:unidoc_2.11
unidoc
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/unidoc_2.11/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:coproduct_2.10
coproduct
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/coproduct_2.10/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bphlist_2.10
BpHList
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bphlist_2.10/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:nd4j-linux-ppc64le-native
nd4j-linux-ppc64le-native
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/nd4j-linux-ppc64le-native/
- License: Apache
-
Latest release: 0.8.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiablefloat_2.10
DifferentiableFloat
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiablefloat_2.10/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiablehlist_2.10
DifferentiableHList
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiablehlist_2.10/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:differentiablefloat_2.12
DifferentiableFloat
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/differentiablefloat_2.12/
- License: Apache
-
Latest release: 1.0.0
published almost 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:bpseq_2.10
BpSeq
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/bpseq_2.10/
- License: Apache
-
Latest release: 1.0.0-M4
published about 9 years ago
Rankings
repo1.maven.org: com.thoughtworks.deeplearning:array2d_2.11
array2D
- Homepage: https://github.com/ThoughtWorksInc/DeepLearning.scala
- Documentation: https://appdoc.app/artifact/com.thoughtworks.deeplearning/array2d_2.11/
- License: Apache
-
Latest release: 1.0.0-M3
published about 9 years ago