Get data of dictionaries

Get data of dictionaries Get data of dictionaries

Obtener datos de diccionarioslink image 1

Disclaimer: This post has been translated to English using a machine translation model. Please, let me know if you find any mistakes.

Let's imagine that we have the following dictionary

	
dictionary = {
"id": 1,
"name": "John",
"age": 30
}
Copy

If we want to obtain the value of the age, what is usually done is dictionary["age"]

	
dictionary = {
"id": 1,
"name": "John",
"age": 30
}
dictionary["age"]
Copy
	
30

But, what happens if the key we put in is not in the dictionary? Will it give us an error?

	
dictionary["country"]
Copy
	
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
Cell In[4], line 1
----> 1 dictionary["country"]
KeyError: 'country'

So if this happens in production, the program will crash

So to solve it we can use a try except to handle the error

	
try:
dictionary["country"]
except KeyError:
print("Key not found")
Copy
	
Key not found

But another solution to avoid filling the code with try except is to use the get method which allows us to obtain the value of a key and if it doesn't exist, it returns a default value.

	
dictionary.get("country", "Key not found")
Copy
	
'Key not found'

Another option is not to include the second option, in which case we get None if the key does not exist.

	
country = dictionary.get("country")
print(country)
Copy
	
None

Continue reading

DoLa – Decoding by Contrasting Layers Improves Factuality in Large Language Models

DoLa – Decoding by Contrasting Layers Improves Factuality in Large Language Models

Have you ever talked to an LLM and they answered you something that sounds like they've been drinking machine coffee all night long 😂 That's what we call a hallucination in the LLM world! But don't worry, because it's not that your language model is crazy (although it can sometimes seem that way 🤪). The truth is that LLMs can be a bit... creative when it comes to generating text. But thanks to DoLa, a method that uses contrast layers to improve the feasibility of LLMs, we can keep our language models from turning into science fiction writers 😂. In this post, I'll explain how DoLa works and show you a code example so you can better understand how to make your LLMs more reliable and less prone to making up stories. Let's save our LLMs from insanity and make them more useful! 🚀

Last posts -->

Have you seen these projects?

Subtify

Subtify Subtify

Subtitle generator for videos in the language you want. Also, it puts a different color subtitle to each person

View all projects -->

Do you want to apply AI in your project? Contact me!

Do you want to improve with these tips?

Last tips -->

Use this locally

Hugging Face spaces allow us to run models with very simple demos, but what if the demo breaks? Or if the user deletes it? That's why I've created docker containers with some interesting spaces, to be able to use them locally, whatever happens. In fact, if you click on any project view button, it may take you to a space that doesn't work.

View all containers -->

Do you want to apply AI in your project? Contact me!

Do you want to train your model with these datasets?

short-jokes-dataset

Dataset with jokes in English

opus100

Dataset with translations from English to Spanish

netflix_titles

Dataset with Netflix movies and series

View more datasets -->