-
Notifications
You must be signed in to change notification settings - Fork 393
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
java.lang.RuntimeException in Bootstrap your First Project #408
Comments
Thank you for reporting this. This is definitely a bug related to the recent serialization changes we made for our models. We will try to fix it asap. In the meantime you can try using 0.5.x version. |
Is there a timeline when this will be fixed? |
This requires changing our code generator templates for feature engineering in CLI so it would generate the concrete feature extractor classes. Perhaps @vpatryshev or @wsuchy can have a look? |
Sure can do; can I have more details?
On Thu, Oct 10, 2019 at 11:25 AM Matthew Tovbin ***@***.***> wrote:
This requires changing our code generator templates for feature
engineering in CLI so it would generate the concrete feature extractor
classes. Perhaps @vpatryshev <https://github.com/vpatryshev> or @wsuchy
<https://github.com/wsuchy> can have a look?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#408?email_source=notifications&email_token=AAB24KYXDOHQCE4CVNYAKHLQN5XR5A5CNFSM4IWMANGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEA5JZQA#issuecomment-540712128>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAB24KZ7LQF5TPCEWUL77QDQN5XR5ANCNFSM4IWMANGA>
.
--
Thanks,
-Vlad
|
@vpatryshev it's similar to what @gerashegalov done here in this PR - #406 For example this extractor code with anonymous function: val rowId = FeatureBuilder.Integral[BostonHouse].extract(_.rowId.toIntegral).asPredictor Has to be replaced with with concrete class: val rowId = FeatureBuilder.Integral[BostonHouse].extract(new RowId).asPredictor
object BostonFeatures {
class IntegralExtract(f: BostonHouse => Int) extends BostonFeatureFunc[Integral] {
override def apply(v1: BostonHouse): Integral = f(v1).toIntegral
}
class RowId extends IntegralExtract(_.rowId)
} |
@vpatryshev any progress on this one? thanks! |
Oh, did not even touch. I keep it on my mind all the time, though.
Thanks,
-Vlad
…On Thu, Nov 14, 2019 at 11:27 AM Matthew Tovbin ***@***.***> wrote:
@vpatryshev <https://github.com/vpatryshev> any progress on this one?
thanks!
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#408?email_source=notifications&email_token=AAB24K2IHUL57ZXYYJ4NYA3QTWRCDA5CNFSM4IWMANGKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEEDABQI#issuecomment-554041537>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAB24KZL7YDKVJJTE3E6T7LQTWRCDANCNFSM4IWMANGA>
.
|
FYI. Working on it now. |
@shoafj7917, can you please check that you can reproduce this with the latest version of TransmogrifAI? What you write is not runnable on the current version, and I don't see how to reproduce this behavior. Which directory do you run it in? |
When I tried with version @vpatryshev .
short,
full,
|
The master version was not published yet, but you can do it locally.
|
Even after install
|
In order to fix we would need to modify the template used to generate the project. |
Describe the bug
After auto generating a project training the data always results in the same Java Runtime Error.
To Reproduce
Command as given from the README.txt
Logs or screenshots
Additional context
I am on Ubuntu 18.04 with:
spark-2.3.3-bin-hadoop2.7
java openjdk version "1.8.0_222"
TransmogrifAI 0.6.1
Hope for your help, Thanks
The text was updated successfully, but these errors were encountered: