You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. I downloaded all files. And all of them are just a randomly answers in JSON format. So, I want to train my own tensorflow.js model using this database! But, I don't have a question database here. So, what I need to do?
The text was updated successfully, but these errors were encountered:
You can read the JSON file using the following code, then you can you your model to train the data.
import pandas as pd
#Following line will read json file using pandas
json_data = pd.read_json('json_file_path', lines=True)
#Display the data
json_data.head(5)
Hello. I downloaded all files. And all of them are just a randomly answers in JSON format. So, I want to train my own tensorflow.js model using this database! But, I don't have a question database here. So, what I need to do?
The text was updated successfully, but these errors were encountered: