Harikrishna P S
Results
2
issues of
Harikrishna P S
GPU RUN
2
from nomic.gpt4all import GPT4AllGPU m = GPT4AllGPU(LLAMA_PATH) config = {'num_beams': 2, 'min_new_tokens': 10, 'max_length': 100, 'repetition_penalty': 2.0} out = m.generate('write me a story about a lonely computer', config) print(out) here...
How do I preprocess my dataset and convert it to the model needed format?