Questions tagged [evaluate]

execution of evaluations of expressions or evaluation functions. Use tag evaluation for rules, algorithms, and strategies of the evaluation.

What is it?

Evaluation is about rules, algorithms and strategies used for the evaluation of expressions or the computation of evaluation functions.

This tag may should be used for the execution of evaluations.

Related tags

  • Prefer the tag if the question is about rules, algorithms and strategies used for the evaluation of expressions or the computation of evaluation functions.
  • For more specific questions use tag

See also:

470 questions
1
vote
1 answer

How to evaluate model while the data splitted manually in deep learning?

I split my dataset separated with my model file. So in my model file, I just run the model and set which is train, val, and test. My model already has good results, but I struggled when I want to evaluate and predict the model. Here's my code to set…
1
vote
1 answer

Evaluate function giving error 2029 using Excel VBA

Evaluate is throwing error 2029 (#NAME). The project is using Census procedures to allocate seats in the House of Representatives for any given number of house members (currently 435). There are a number of proposals to expand the size of the…
Tony Lima
  • 65
  • 1
  • 9
1
vote
2 answers

VBA - Including own function within Evaluate()

In VBA, I am used to calculate values of a column, which is the function of another column, with Evaluate() in order not to use a loop. For instance, to assess column 2, whose values are the exponential of column 1's values, I would write (here…
Xav
  • 51
  • 6
1
vote
0 answers

tensorflow Evaluation SSD_Mobilenetv2 320x320 fpnlite

I am trying to do the evaluation of a trained SSD_Mobilenetv2 320x320 fpnlite on tensorflow. I ran training and evaluation parallel in two different colabs account. But I am always getting the metrics values as -1(evaluation result) after each…
1
vote
3 answers

Python evaluate a string (Would Regular Expression work?)

Basically what I am trying to accomplish is whenever a number precedes a string within square brackets, the string within the square brackets should repeat as many times. I am learning regular expression and I posted a question how I can come up…
1
vote
0 answers

Excel VBA Evaluate not working, getting a #VALUE error

I have a VBA formula that works when I use the ActiveCell.Formula2R1C1 function, which I used to test that I could get the result I want. This works as it should, giving me a comma delimited list. ActiveCell.Formula2R1C1 = …
slien
  • 11
  • 1
1
vote
1 answer

TensorsFlow/Keras How to find the unpredicted training examples for seq2seq problem?

I can iterate 1 by 1 through all the training examples (which is painfully slow) and find the training examples that don’t successfully get predicated. I can ‘very quickly’ batch evaluate the same examples, however, I only can see the loss &…
soAcct
  • 21
  • 2
1
vote
1 answer

How to fix .Evaluate rounding result

I am using Evaluate in order to execute this formula : x = Application.Evaluate("AdInterp(" & cells(2,"C").value & "," & "'" & ThisWorkbook.Worksheets("Fonction DCF ").Range("U8:U31").Parent.Name & "'!" & ThisWorkbook.Worksheets("Fonction DCF…
TourEiffel
  • 4,034
  • 2
  • 16
  • 45
1
vote
0 answers

Error 2029 by "VBA Excel 365 Home Insider/Beta" => Function "Application.Evaluate" with a lambda expression with double recursion (Fibonacci)

The following UDF Function (Lambda Expression) with the name "UDF_FIBO" ist stored in the Name Manager (expression stored as Referer as needed without Parameter) Name: UDF_FIBO Referer: =LAMBDA(myVal; IF(myVal>1; IF(myVal>2;…
Chris
  • 35
  • 5
1
vote
1 answer

Keras saved model returns different result than original model using Batch Normalization on multiple GPUs (Distributed training)

I got a different result when using evaluate function on a saved model when compare with the original model. This only happens when Batch Normalization is included in the model and when training on multiple GPUs with MirroredStrategy. Here is my…
Lucas
  • 11
  • 1
1
vote
1 answer

How Can I Find Function's Value by MathNet in C#

I need to find the function's value for the given value. For example, the function is 3x-6, and I would like to find f(1), using MathNet.Numerics; using MathNet.Symbolics; using Expr = MathNet.Symbolics.SymbolicExpression; var x =…
propeace
  • 13
  • 2
1
vote
1 answer

Mathematica: How to evaluate this function?

I need to evaluate a function in 2D but it has three unknowns, the two arguments (x, y) and alpha. I need to evaluate x and y between {0,100}, while alpha between {0,1}. The function is: f(x, y) = x ^ (a) * y ^ (1-a) Thank you!
Bernardita
  • 11
  • 1
1
vote
1 answer

Model.evaluate in keras with multi inputs and multi outputs

I m working on a deep multimodal autoencoder in the case of unsupervised learning which takes two inputs with shape of (1000, 50) and (1000,60) respectively to reconstruct the intial two inputs. The model has 3 hidden layers and aim to concatenate…
Andrea
  • 113
  • 1
  • 7
1
vote
2 answers

I want to know why it is advantage in Clojure for a code to be not evaluated is data

I am a beginner Clojure programmer. In a Book, it is an advantage of the Clojure that the code that is not evaluated is data. But I do not understand. So, I want an example code and an explanation so I can understand. I am Korean. For that reason, I…
1
vote
0 answers

MiniMax algorithm in Kotlin - Nim Game

I have a question regarding my implementation of the minimax algorithm for the game called "nim game" in kotlin. It is based on the minimax algorithm that is described in wikipedia. I do not really know why it is not working. I think the problem is…