Is there any way that we can save linker object in spark after training and predicting #827
Answered
by
RobinL
rapidAmbakar
asked this question in
Q&A
-
I have just predicted on a sparkdata frame which take roughtly around 1.5 hours. Is the return object coming from linker.predict() is just limited to save it to dataframe? or is their any any which i dont have to predict every time. |
Beta Was this translation helpful? Give feedback.
Answered by
RobinL
Oct 11, 2022
Replies: 1 comment
-
To save the outputs you will need to save linker.predict() to a dataframe using:
or
To make it run faster, you could consider using tighter blocking rules, see |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rapidAmbakar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To save the outputs you will need to save linker.predict() to a dataframe using:
or
To make it run faster, you could consider using tighter blocking rules, see
https://moj-analytical-services.github.io/splink/demos/02_Blocking.html