Questions tagged [functions]
The functions tag has no summary.
8 questions
4 votes
1 answer
632 views
Why does the function of a neuron need to be in range [-1,1] or [0,1]?
The concept of a function includes three major components: a set called “domain”, a set called "codomain" and a rule which for each element of a domain points to (puts into a correspondence)...
3 votes
1 answer
69 views
Monte Carlo iteration in excel
I'm trying to use Excel to determine the outcomes of hockey games. In the game that I'm simulating, I have each team has a goals for and standard deviation which I call in this function: (NORM.INV(...
0 votes
1 answer
42 views
Working with functions [closed]
What are some good sources for learning how to deal with functions in Python and R. I have used them a lot of times and they can be a bit challenging. I like to write out a plan of what I want done ...
0 votes
0 answers
29 views
How to define a DataLoader or Loss for a e.g. multivariable functions?
I am trying to write a NN for estimating a f:R^n --> R^m. My problem is how to train network. I mean if I want to define a dataloader, how to attach X \in R^n to its related Y \in R^m ? Because ...
1 vote
3 answers
7k views
How to use function from other Colab file?
I’m coming from a math background and learning some data science. I am very new to some details of this stuff. Working with colab, I’m trying to organize my sample simulating functions in such a way ...
1 vote
1 answer
111 views
do inner functions have a substantial impact when used in series.apply() in Pandas
In pandas, if I use series.apply() to apply a function with an inner function definition, for example: ...
1 vote
0 answers
32 views
Probability notation q(y) and q(Y) and its implication to vector functions
The function in question is (from Appendix B, Proof of proposition 2.1 from Posterior Regularization for Structured Latent Variable Models): $$q(\textbf{Z}) = \frac{p_{\theta}(\textbf{Z}|\textbf{X})...
0 votes
2 answers
22k views
Call function from one class in the same class
I have 2 classes model and impute. I am defining a function mode_impute inside ...