Find answers from the community

Updated 3 months ago

is there way to save the gpt3 5 fine

is there way to save the gpt3.5 fine tune model or call it again after using the finetune example in a differnt notebook?
T
D
3 comments
You can view your fine-tunes from OpenAI playground, then you can pass that in the service_context and define the model as your fine-tuned one
Plain Text
service_context = ServiceContext.from_defaults(callback_manager=callback_manager,
    llm=OpenAI(model="davinci:ft-personal:random-2023-02-08-18-09-09", temperature=0, max_tokens=1000), chunk_size=1024, node_parser=node_parser
)
can we configure the epochs??
Add a reply
Sign up and join the conversation on Discord