Skip to content

Commit b34ac6c

Browse files
committed
Move comment to Scaladoc
1 parent 3266789 commit b34ac6c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

DeepLearning/src/main/scala/com/thoughtworks/deeplearning/DeepLearning.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ object DeepLearning {
2020
type Delta = Delta0
2121
}
2222

23-
// The Scaladoc of members of trait DeepLearning must be defined in `SimulacrumIssue82WorkAround`,
24-
// in case of https://github.com/mpilquist/simulacrum/issues/82
2523
private[DeepLearning] sealed trait SimulacrumIssue82WorkAround[Differentiable] {
2624

2725
/** The result value of forward pass */
@@ -50,6 +48,9 @@ import DeepLearning._
5048
* - [[scala.Float Float]], [[plugins.FloatWeights.FloatWeight FloatWeight]] or [[plugins.CumulativeFloatLayers.FloatLayer FloatLayer]]
5149
* - [[scala.Double Double]], [[plugins.DoubleWeights.DoubleWeight DoubleWeight]] or [[plugins.CumulativeDoubleLayers.DoubleLayer DoubleLayer]]
5250
* - [[org.nd4j.linalg.api.ndarray.INDArray INDArray]], [[plugins.INDArrayWeights.INDArrayWeight INDArrayWeight]] or [[plugins.CumulativeINDArrayLayers.INDArrayLayer INDArrayLayer]]
51+
*
52+
* @note The Scaladoc of members of trait DeepLearning are defined inside `SimulacrumIssue82WorkAround`,
53+
* in case of https://github.com/mpilquist/simulacrum/issues/82
5354
*/
5455
@typeclass(excludeParents = List("SimulacrumIssue82WorkAround"))
5556
trait DeepLearning[Differentiable] extends SimulacrumIssue82WorkAround[Differentiable] {

0 commit comments

Comments
 (0)