You're looking at a specific version of this model. Jump to the model overview.

lucataco /phixtral-2x2_8:25d7b93b

Input

*string
Shift + Return to add a new line

Input prompt

integer
(minimum: 0, maximum: 2048)

Max new tokens

Default: 1024

number
(minimum: 0, maximum: 1)

Top p

Default: 0.95

integer
(minimum: 0, maximum: 100)

Top k

Default: 50

number
(minimum: 0, maximum: 1)

Temperature

Default: 0.7

integer

The seed for the random number generator

Output

Here is a simple list comprehension in Python that generates a list of squares for numbers from 1 to 10: ```python squares = [i**2 for i in range(1, 11)] print(squares) ``` In this code, `i**2` is the expression that generates the square of each number, and `for i in range(1, 11)` is the loop that goes from 1 to 10. The `range(
Generated in