How does this space differ from the falcon-40b-instruct model

#17
by BrentBaccala - opened

I just ran falcon-40b-instruct locally from https://huggingface.co/tiiuae/falcon-40b-instruct with the input "print the numbers from 1 to 10". My local copy produces this output:

Result: print the numbers from 1 to 10 using the for loop
Here is an example code using the for loop to print the numbers from 1 to 10:

for value in range(1, 11):
    print(value)

This will print each number on a new line, separated by a space:

1
2
3
4
5
6
7
8
9
10 

Notice that it added "using the for loop" to the input. When I tried the same input on this space, I got "1, 2, 3, 4, 5, 6, 7, 8, 9, 10" for my entire output.

Why the difference? How does this space differ from falcon-40b-instruct?

Sign up or log in to comment