Sign in
apache
/
predictionio
/
v0.9.2
/
.
/
examples
/
experimental
/
java-local-helloworld
/
MyPredictedResult.java
blob: dad6d9f44062241cad58b76a83249efcfb6507ff [
file
] [
log
] [
blame
]
package
org
.
sample
.
java
.
helloworld
;
import
java
.
io
.
Serializable
;
public
class
MyPredictedResult
implements
Serializable
{
Double
temperature
;
public
MyPredictedResult
(
Double
temperature
)
{
this
.
temperature
=
temperature
;
}
}