- 4277 Views
- 3 replies
- 2 kudos
Hello Community Users, We recently announced a new Large Language Models (LLM) program, the first of its kind on edX! Learn how to develop production-ready LLM applications and dive into the theory behind foundation models. Taught by industry experts...
- 4277 Views
- 3 replies
- 2 kudos
Latest Reply
Hi @163050 You could download the Dbc file from the course, we already have the LLM course in the Customer Academy.
2 More Replies
by
HT
• New Contributor II
- 10972 Views
- 5 replies
- 2 kudos
Hi, I am new to LLM and am curious to try it out. I did the following code to test from the databricks website:import torch
from transformers import pipeline
instruct_pipeline = pipeline(model="databricks/dolly-v2-12b", torch_dtype=torch.bfloat16, tr...
- 10972 Views
- 5 replies
- 2 kudos
Latest Reply
Just set the HF cache dir to a persistent path on /dbfs:import os
os.environ['TRANSFORMERS_CACHE'] = "/dbfs/..."
4 More Replies
- 7209 Views
- 1 replies
- 2 kudos
error in running a LLM model in pyfunc.spark_udf
- 7209 Views
- 1 replies
- 2 kudos
Latest Reply
Solution: Please find below the example. Creating a secret and scope is a one time activity once we create a scope and secret we can access the token using any notebook or cluster in the workspace as shown below. After creating a secret if we want ...