data2vis
data2vis copied to clipboard
invalid json response
can you guide me for step to step execution of this project. I have followed your guide but not able to get visualizations. I have downloaded the project using git lfs. whenever I execute webserver py the browser is working. inside it when i click train your own data and paste json data from testdata folder files. I always got error as invalid json reponse. Can you guide plz I really need help
Hi @SarangShaikh201,
I am looking at the json generated ... looks like it is truncated.
The size of the generated output sequence is determined by the max_decode_length
parameter.
This is specified in the training spec file in your model directory. In this repo, it is in https://github.com/victordibia/data2vis/blob/master/vizmodel/train_options.json
Specifically, on line 17, max_decode_length
is set to 2000.
"max_decode_length": 2000
Can you verify that you have this value set in your train_options.json file?
Btw .. I am curious to learn more about your application of data2vis
- research, schoolwork, or other application?
-V.