nateraw / codellama-7b-instruct-hf

  • Public
  • 73 runs
  • A100 (80GB)
Iterate in playground

Input

*string
Shift + Return to add a new line
integer

The maximum number of tokens the model should generate as output.

Default: 256

number

The value used to modulate the next token probabilities.

Default: 1

number

A probability threshold for generating the output. If < 1.0, only keep the top tokens with cumulative probability >= top_p (nucleus filtering). Nucleus filtering is described in Holtzman et al. (http://arxiv.org/abs/1904.09751).

Default: 1

integer

The number of highest probability tokens to consider for generating the output. If > 0, only keep the top k tokens with highest probability (top-k filtering).

Default: 50

Output

Here is an example of how you can read in a csv file and calculate the 3 day rolling average of the "profit" column using the "date" column in Python: ``` import pandas as pd # Read in the csv file df = pd.read_csv('your_data.csv') # Calculate the 3 day rolling average of the "profit" column using the "date" column df['3_day_rolling_average'] = df['profit'].rolling(window=3).mean() # Print the results print(df) ``` This will give you the 3 day rolling average of the "profit" column for each row in the data frame. Alternatively, you can also use the `rolling_mean` function from the `pandas` library: ``` df['3_day_rolling_average'] = df.rolling_mean(window=3, column='profit', date_column='date') ``` This will give you the same result as the previous code.
Generated in

Run time and cost

This model runs on Nvidia A100 (80GB) GPU hardware. We don't yet have enough runs of this model to provide performance information.

Readme

This model doesn't have a readme.