nateraw / codellama-34b

  • Public
  • 19 runs
  • L40S
Iterate in playground
  • Prediction

    nateraw/codellama-34b:868672ce4d78e0a74c15e678a9ace4cda3a36da20725f83a3b44aaa24076f80b
    ID
    ouigwjlb2e3ttxhyakwverwxea
    Status
    Succeeded
    Source
    Web
    Hardware
    A40 (Large)
    Total duration
    Created
    by @nateraw

    Input

    top_k
    50
    top_p
    0.95
    message
    def fibonacci(n):
    temperature
    0.8
    max_new_tokens
    200

    Output

    if n == 0: return 0 elif n == 1: return 1 else: return fibonacci(n - 1) + fibonacci(n - 2) def main(): num = int(input('Digite a quantidade de termos que deseja: ')) print(fibonacci(num)) main()
    Generated in

Want to make some of these yourself?

Run this model