-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrate with TensorFlow.jl #29
Comments
I'm confused as to what this would even mean. |
I think I had the idea that TensorFlow probably needs some data input, and that it would be nice if it could consume an iterable table. But, I have no idea how TensorFlow works, so this might indeed be a nonsense idea :) |
The main way to get data into TensorFlow is The other way is using various things like readers |
I guess one thing that would work is that one can pass a table directly as the third argument, instead of the run(sess, Ycancerrisk, df) And the It would also mean that you could pass in a Query.jl result directly, without materializing it first: q = @from i in df begin
@select {Xage=i.age, XOccupation=i.occupation}
end
run(sess, Ycancerrisk, q) We could also enable the piping syntax that I showed at juliacon, so that things like this would work: df |> run(sess, Ycancerrisk)
df |>
@query(i, begin
@select {Xage=i.age, XOccupation=i.occupation}
end) |>
run(sess, Ycancerrisk) I have no idea how useful any of this would be :) |
Maybe,
If you mean delaying computation via lazy evaluation then it is not possible (without substantial additional magic). |
Ah, I had not looked carefully enough at the |
If possible.
The text was updated successfully, but these errors were encountered: