Skip to content

Using Fine Tuning Models with GPT3Discord #125

Answered by cherryroots
erinheit451 asked this question in Q&A
Discussion options

You must be logged in to vote

See text_service_cog.py#L869
Just set it to equal your custom model @erinheit451

If you don't want to set one model for all conversation that's hardcoded you can add an entry to the Models class in openai_model.py then add that to the TEXT_MODELS list then set your default model with the settings command, should use that then

class Models:
    # Text models
    DAVINCI = "text-davinci-003"
    DAVINCI_FT = "some-model"
    CURIE = "text-curie-001"
    BABBAGE = "text-babbage-001"
    ADA = "text-ada-001"

    .....

    # Model collections
    TEXT_MODELS = [DAVINCI, DAVINCI_FT, CURIE, BABBAGE, ADA, CODE_DAVINCI, CODE_CUSHMAN]
    EDIT_MODELS = [EDIT, CODE_EDIT]

    ....

    # Tokens Ma…

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
2 replies
@erinheit451
Comment options

@cherryroots
Comment options

Answer selected by erinheit451
Comment options

You must be logged in to vote
1 reply
@erinheit451
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants