top | item 36872712

(no title)

ericHosick | 2 years ago

The LLM is impressive (llama2:13b) but appears to have been greatly limited to what you are allowed to do with it.

I tried to get it to generate a JSON object about the movie The Matrix and the model refuses.

discuss

order

jmorgan|2 years ago

In case you might be trying this with Ollama (given the model:tag syntax) – I haven't added this to the readme yet (seeing some issues with the prompt template) but check out llama2-uncensored:

  ollama run llama2-uncensored

jmorgan|2 years ago

  % ollama run llama2-uncensored
  >>> Generate a json object describing the most stunning part of the movie: "The Matrix"
  {   
    "title": "The Matrix",
    "director": "The Wachowskis",
    "release_year": 1999,
    "description": "Set in a dystopian future, The Matrix follows the story of Neo (Keanu Reeves), a computer hacker who is drawn into an underground war against machines that have enslaved humanity. Along with his allies Morpheus (Laurence Fishburne) and Trinity (Carrie-Anne Moss), Neo learns to harness the power of the Matrix, a virtual reality system designed to keep humans obedient and ignorant. With the help of a rogue program named Agent Smith (Hugo Weaving), Neo discovers the true nature of the Matrix and sets out on a journey to free humankind from their digital prison.",
    "stunning scenes": [
      "bulletproof kung-fu fighting",
      "bullet time",
      "dream-like imagery",
      "special effects",
    ]
  }
edit: formatting