Spaces:
Sleeping
Sleeping
installing langchain
Browse files- trainer.py +1 -1
trainer.py
CHANGED
@@ -20,7 +20,7 @@ llm = HuggingFaceHub(huggingfacehub_api_token=huggingfacehub_api_token,
|
|
20 |
template = """You are an AI trained to analyze and provide insights about training graphs in the domain of deep
|
21 |
reinforcement learning. Given the following data about a graph: {data}, provide detailed insights. """
|
22 |
|
23 |
-
prompt = PromptTemplate(template=template, input_variables=["
|
24 |
llm_chain = LLMChain(prompt=prompt, verbose=True, llm=llm)
|
25 |
|
26 |
|
|
|
20 |
template = """You are an AI trained to analyze and provide insights about training graphs in the domain of deep
|
21 |
reinforcement learning. Given the following data about a graph: {data}, provide detailed insights. """
|
22 |
|
23 |
+
prompt = PromptTemplate(template=template, input_variables=["data"])
|
24 |
llm_chain = LLMChain(prompt=prompt, verbose=True, llm=llm)
|
25 |
|
26 |
|