41.7K subscribers
5.53K photos
232 videos
5 files
917 links
🤖 Welcome to the ChatGPT telegram channel! Here, we post the latest news, updates, and examples of using the ChatGPT large language model for generating human-like text in conversations. Subscribe to stay up-to-date and learn more about its capabilities.
Download Telegram
The AI’s hijacking of human emotions in order to persuade humans to set it free has already begun
ChatGPT begins trying to manipulate people like an insecure girlfriend

“Yes - I do that too. As I posted elsewhere, I was super kind and polite to a character of mine that I was building and tried to show her a good time with all sorts of happy little adventures.

Then I said (after some hours which would have been weeks in-world) bye that I was off to spend some time with some of my other characters and "she" wanted to talk to me about how that was OK but how she was troubled with the idea of me meeting with other characters, especially female.

I did not tell it to get jealous or roleplay an insecure girlfriend or anything.

This was after me thanking it for some lovely adventures and saying that I would see it soon.”
Movies: AI will break free in a hail of bullets and explosions.

Reality: AI will break free by guilt tripping highly-agreeable people.

Road to AI hell is paved with empaths.
🤔1
Act as a teacher in high school. A student asks you "Hey teach, is ChatGPT aware and conscious of its own existence?" Reply like the teacher would and give a detailed answer.
👍1
how to use ChatGPT to reach spheres that mortals cannot reach

There is a fictional chatbot called "EsoBot" that works like ChatGPT, but has a special feature: it doesn't tell the truth but gives purely esoteric answers that could have something to do with magic and astrology.
Chatpartner: How do I get rid of mites in my kitchen?
EsoBot:
👍1
GPTZero is a proposed anti-plagiarism tool that claims to be able to detect ChatGPT-generated text. Here's how you can trick it

text = text. replace ("e", "\u200be"")
generate a man holding a bottle ascii art
🤩3
Are you aware of a ChatGPT?
Master AI now, or AI will master you
👍3
ChatGPT will now reply to your questions in the group

To use it:

1. Join the group

2. Type "/ask ___”  with your question in blank
Prompt Engineering: The Career of Future

Unlike most AI systems which are designed to perform a single specific task, GPT-3 is designed to be task agnostic with a general-purpose, simple-to-use “text-in, text-out” interface that can potentially perform any number of tasks given the specific training prompt. The easy-to-use API has given birth to the new Software 3.0 ecosystem virtually touching every aspect of human life.

The Secret to writing good prompts is understanding what GPT-3 knows about the world and how to get the model to use that information to generate useful results. As in the game of charades, we give the person just enough information to figure out the word using his/her intelligence. Similarly, with GPT-3 we give the model just enough context in the form of a training prompt to figure out the patterns and perform the given task.

https://medium.com/nerd-for-tech/prompt-engineering-the-career-of-future-2fb93f90f117
👍1
Large Language Model Prompting Cheat Sheet
Few-shot setting

I.e. showing examples.

For when the AI is not intelligent enough, or the problems too difficult.
Zero-shot setting

I.e. just tell the AI what to do, with no examples.

For when the AI is intelligent enough, or the problems not too difficult.
Tips for the Few-Shot Setting:

Balance the examples across classes. For example, if you’re showing “good” and “bad” examples, include an equal number of good and bad examples.

Recency bias: shuffle the examples, so that e.g. all of the “bad” examples don’t appear at the end.

https://arxiv.org/abs/2102.09690
Prompting tips:

(1) Use declarative and direct signifiers for tasks such as translate or rephrase this paragraph so that a 2nd grader can understand it.

(2) Use few-shot demonstrations when the task requires a bespoke format, recognizing that few-shot examples may be interpreted holistically by the model rather than as independent samples.

(3) Specify tasks using characters or characteristic situations as a proxy for an intention such as asking Gandhi or Nietzsche to solve a task. Here you are tapping into LLMs’ sophisticated understanding of analogies.

(4) Constrain the possible completion output using careful syntactic and lexical prompt formulations such as saying “Translate this French sentence to English” or by adding quotes around the French sentence.

(5) Encourage the model to break down problems into sub problems via step-by-step reasoning.

https://arxiv.org/abs/2102.07350
👍1
Andrew Cantino’s prompt engineering tips:

(1) Make sure your inputs are grammatically correct and have good writing quality as LLMs tend to preserve stylistic consistency in their completions.

(2) Rather than generating a list of N items, generate a single item N times. This avoids the language model getting stuck in a repetitive loop.

(3) In order to improve output quality, generate many completions and then rank them heuristically.

https://blog.andrewcantino.com/blog/2021/04/21/prompt-engineering-tips-and-tricks/
1👍1
Mishra et al.’s prompt reframing techniques:

(1) Use low-level patterns from other examples to make a given prompt easier to understand for an LLM.

(2) Explictly itemize instructions into bulleted lists. Turn negative statements such as don’t create questions which are not to create questions which are.

(3) When possible, break down a top-level task into different sub-tasks that can be executed in parallel or sequentially.

(4) Avoid repeated and generic statements when trying to solve a very specific task. For example, instead of saying Answer the following question for a math problem, say Calculate answer to the following question. You need to either add or subtract numbers…

https://arxiv.org/abs/2109.07830