Single-element tuples in Python

Single-element tuples in Python Single-element tuples in Python

Single Element Tupleslink image 1

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

If in Python we want to create a list with a single element, we simply write the element between square brackets, for example:

	
list = [1]
type(list)
Copy
	
list

However, with tuples we cannot write an element within parentheses

	
tupla = (1)
type(tupla)
Copy
	
int

As we can see, Python interprets it as an integer, not as a tuple. To solve this, a comma is added after the element, for example:

	
tupla = (1,)
type(tupla)
Copy
	
tuple

What is this for? When we have a function that returns several parameters, what it is actually returning is a tuple. So, it may happen that we have a code that calls a function, checks the length of the returned tuple, and processes each element of the tuple. Let's look at an example

	
def return_tuple():
return 1, 2, 3
def process_tuple():
tuple = return_tuple()
for i in tuple:
print(i)
process_tuple()
Copy
	
1
2
3

But, what happens in this example if the function doesn't return a tuple? We would get an error

	
def return_int():
return 1
def process_tuple():
tuple = return_int()
for i in tuple:
print(i)
process_tuple()
Copy
	
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
Cell In[5], line 9
6 for i in tuple:
7 print(i)
----> 9 process_tuple()
Cell In[5], line 6, in process_tuple()
4 def process_tuple():
5 tuple = return_int()
----> 6 for i in tuple:
7 print(i)
TypeError: 'int' object is not iterable

We get an error because Python tries to iterate through what the function returns, but since it returns an integer it can't iterate through it. We have two ways to solve this, one is that the processing function checks if a tuple has been returned and in that case processes it, another is that the function that returns values always returns a tuple, even if it is a single element.

	
def return_int():
return 1,
def process_tuple():
tuple = return_int()
for i in tuple:
print(i)
process_tuple()
Copy
	
1

As we see, in the return_int function a , has been placed at the end of the return, so it is returning a tuple with a single element, which is why the process_tuple function will not give an error.

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 -->