Problem Detail: I’ve been looking into Recurrent Neural Networks, but I don’t understand what the architecture of a neural network would look like when the output length is not necessarily fixed. It seems like most networks I’ve read descriptions of require Read More …
Author: ignougroup
[Solved]: Evaluating Statements Using a Parse Tree
Problem Detail: I’m building a compiler. I already have a parse tree which I built using Bison for a grammar similar to the ANSI C grammar in this link. I see that for multiplicative expression in my parse tree, there can Read More …
[Solved]: Does the BIOS run on the CPU?
Problem Detail: I was just thinking about this: Does the BIOS execute on the CPU? If so, how does it handle multiple CPU architectures/instruction sets? If not, what does it execute on? Asked By : Zeb McCorkle Answered By : hunch_hunch Yes, the Read More …
[Solved]: Given an array of size N, if you know that all of the elements are white except for one, how to find the index of that element efficiently?
Problem Detail: Yesterday while returning home, I walked past a house that had a camera. For some reason I started thinking about how these cameras work, and how you would use them in case of robbery. While thinking about everything that Read More …
[Solved]: Why can’t we solve the dinner party problem by finding a maximum matching?
Problem Detail: Consider the following dinner party problem: Given a list of acquaintances, and a list containing all pairs of individuals who are not on speaking terms with each other, find the largest set of acquaintances you can invite to a Read More …
[Solved]: How to calculate an accurate estimated reading time of text?
Problem Detail: I suppose the calculation should not be done by only two factors (average reading speed/words per minute, and word count). But at least by a third parameter, that in my opinion should measure the difficulty of the used vocabulary Read More …
[Solved]: Decision problem and algorithm
Problem Detail: I was reading about decision problem. I understand that decision problem tell yes/no answer for an input. The decision is based on a decision procedure also called an algorithm. The wikipedia says that It is traditional to define the Read More …
[Solved]: Why doesn’t decision tree work in case find minimum
Problem Detail: When we would like to prove lower bound comparison algorirthm, we often use decision tree, for example sorting by comparisons. So let’s consider find minimum in array $a[1..n]$ by comparison. Lower bound for that problem is commonly known – Read More …
[Solved]: Time series probability and mutual information
Problem Detail: There is a time series of say $100$ data points. I wish to assign symbols of $0, 1, 2$ for each unique data point. The issue is I have tried but got stuck since no matter I specify the Read More …
[Solved]: What’s the problem of using the clock to generate random numbers?
Problem Detail: If the clock shows 14:15:36.909302, why not just use the fractions of a second part (09302) as a kind of random number? What is wrong with this form of generating random numbers? I am aware that obtaining truly random Read More …