working python code:

# Python program to get average of a list
def Average(lst):
   return sum(lst) / len(lst)

# Driver Code
lst = [30, 20, 40, 10, 10]
average = Average(lst)

# Printing average of the list
print("Average of the list =", round(average, 2))

Returns you 22.0

If I'm right, this is the ultimate evaluation....

So again let's run through this:

I was walking down the s_treet_

0.1, 0.05, 0.03, 0.2......
0.1, 0.05, 0.03, 0.2......
0.1, 0.05, 0.03, 0.2......
0.1, 0.05, 0.03, 0.2......
0.1, 0.05, 0.03, 0.2......

So we get 5 sets of predicted probabilities, and for each set we take the 
correct letter we want it to predict the most hopefully, and add them up by 
averaging them.

Time to code it up and test this... I'll be back!
------------------------------------------
Artificial General Intelligence List: AGI
Permalink: 
https://agi.topicbox.com/groups/agi/Td13a829978c4c9f3-Mb72326d8ce99a5a8b2bde59b
Delivery options: https://agi.topicbox.com/groups/agi/subscription

Reply via email to