Skip to content

Commit

Permalink
bigdl keras private (intel#4731)
Browse files Browse the repository at this point in the history
  • Loading branch information
Le-Zheng authored Sep 15, 2021
1 parent 1a18e11 commit ef4e98e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ abstract class KerasModel[T: ClassTag](implicit ev: TensorNumeric[T])
@deprecated("`Model` is deprecated." +
"com.intel.analytics.bigdl.dllib.keras is deprecated in BigDL 0.11, " +
"and will be removed in future releases", "0.10.0")
class Model[T: ClassTag](private val _inputs : Seq[ModuleNode[T]],
private[bigdl] class Model[T: ClassTag](private val _inputs : Seq[ModuleNode[T]],
private val _outputs : Seq[ModuleNode[T]])(implicit ev: TensorNumeric[T])
extends KerasModel[T] {
this.labor = doBuild(null)
Expand Down Expand Up @@ -266,7 +266,7 @@ object Model extends KerasLayerSerializable{
@deprecated("`Sequential` is deprecated." +
"com.intel.analytics.bigdl.dllib.keras is deprecated in BigDL 0.11, " +
"and will be removed in future releases", "0.10.0")
class Sequential[T: ClassTag]()
private[bigdl] class Sequential[T: ClassTag]()
(implicit ev: TensorNumeric[T]) extends KerasModel[T] {

private[bigdl] var frozen: Boolean = false
Expand Down

0 comments on commit ef4e98e

Please sign in to comment.