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
This is a very cool idea but I'm wondering on how you're implementing your markovesque algo
If i understood correctly each word has a dictionary of next word and each next word another dictionary and thats it because you don't want nesting too much to not blow up too much memory.
But with instead of storing, in the dictionary, the word, you're storing a reference to it ? First you create an object for all words and then you start over and process each word adding in their "next word dictionary" only a ref to the "word object" that was created. You could have very long recursion with it being very lightweight.
I don't know if I make sense ?
The text was updated successfully, but these errors were encountered:
This is a very cool idea but I'm wondering on how you're implementing your
markovesque algo
If i understood correctly each word has a dictionary of next word and each
next word another dictionary and thats it because you don't want nesting
too much to not blow up too much memory.
But with instead of storing, in the dictionary, the word, you're storing a
reference to it ? First you create an object for all words and then you
start over and process each word adding in their "next word dictionary"
only a ref to the "word object" that was created. You could have very long
recursion with it being very lightweight.
This is a very cool idea but I'm wondering on how you're implementing your markovesque algo
If i understood correctly each word has a dictionary of next word and each next word another dictionary and thats it because you don't want nesting too much to not blow up too much memory.
But with instead of storing, in the dictionary, the word, you're storing a reference to it ? First you create an object for all words and then you start over and process each word adding in their "next word dictionary" only a ref to the "word object" that was created. You could have very long recursion with it being very lightweight.
I don't know if I make sense ?
The text was updated successfully, but these errors were encountered: