Hi,
Please i'd like to use prediction techniques in tenserflow.
I have this file:
x | y
1| 1
2| 4
4|16
--> prediction techniques must give me this model y=x*x
using this model i can predict the value y of x=3
This is a sample example. In my experiment i use a file with 1000 lines.
Please, h
2018-08-05 17:00 GMT+01:00 Thouraya TH :
> Hi,
> Please i'd like to use prediction techniques in sklearn .
> I have this file:
>
>
> x | y
>
> 1| 1
> 2| 4
> 4|16
>
>
> --> prediction techniques must give me this model y=x*x
>
>
> using this model i can predict the value y of x=3
> This is a sample