[Object Object], re formating JS | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

[Object Object], re formating JS

Help I need to convert this const inputOutputPairs = [ { input: "hello", output: "hi there", probability: 0.9 }, { input: "hello", output: "hey there", probability: 0.1 }, { input: "Chat", output: "Yes lets chat!", probability: 0.8 }, { input: "good", output: "morning", probability: 0.7 }, { input: "hi", output: "hello", probability: 0.95 }, // Add more input-output pairs with probabilities... ]; into const nextWordPredictionPairs = { "I want": "pizza", "I like": "chocolate", // Add more word pairs for next word prediction... }; const nextSentencePredictionPairs = { "I want to eat": "some ice cream.", "I like to play": "video games.", // Add more sentence pairs for next sentence prediction... }; every combination

3rd Jul 2023, 6:08 AM
Creative Creations 1
Creative Creations 1 - avatar
2 Answers
+ 5
And what do you think looking at the two?
3rd Jul 2023, 8:02 AM
Ausgrindtube
Ausgrindtube - avatar
+ 1
Well I just manually did that Both are almost same but above is words basically we Seprates randomly from data and add that after this this can come Same with sentence variable
3rd Jul 2023, 8:04 AM
Creative Creations 1
Creative Creations 1 - avatar