Skip to main content

Get the Reddit app

Scan this QR code to download the app now
Or check it out in the app stores

Artificial Intelligence & Machine Learning

Well done, u/fucksmith
r/singularity

Everything pertaining to the technological singularity and related topics, e.g. AI, human enhancement, etc.


Members Online
Well done, u/fucksmith
r/singularity - Well done, u/fucksmith


Please Protest OpenAI partnering with Propaganda empire News Corp. Unsubscribe!
r/OpenAI

OpenAI is an AI research and deployment company. OpenAI's mission is to ensure that artificial general intelligence benefits all of humanity. We are an unofficial community. OpenAI makes ChatGPT, GPT-4, and DALL·E 3.


Members Online
Please Protest OpenAI partnering with Propaganda empire News Corp. Unsubscribe!

ChatGPT is about to be turned into yet another propaganda tool by News Corp. just in time for the elections. This is a disgusting and disappointing move by Open AI. News Corp themselves have pleaded several times that no person in their right mind would believe they are actually news, but this is what they are going to use as journalism? Please voice your concern by unsubscribing from their service and finding another tool. Make sure you specify why you unsubscribed.

https://en.wikipedia.org/wiki/Fox_News_controversies

To cancel your ChatGPT Plus subscription, follow these steps:

  1. Log into ChatGPT: Visit the ChatGPT website and log in with your credentials.

  2. Access Subscription Settings: Click on "My Plan" in the left sidebar.

  3. Manage Subscription: In the pop-up window, click "Manage my subscription."

  4. Cancel Plan: On the checkout page, select "Cancel Plan." Your cancellation will take effect the day after your next billing date. To avoid being charged for the next billing period, ensure you cancel at least 24 hours before your next billing date.






Joe Rogan shared this video I made in AnimateDiff on his Instagram last night 😱
r/StableDiffusion

/r/StableDiffusion is back open after the protest of Reddit killing open API access, which will bankrupt app developers, hamper moderation, and exclude blind users from the site. More info: https://rtech.support/docs/meta/blackout.html#what-is-going-on Discord: https://discord.gg/4WbTj8YskM Check out our new Lemmy instance: https://lemmy.dbzer0.com/c/stable_diffusion


Members Online
Joe Rogan shared this video I made in AnimateDiff on his Instagram last night 😱


Recall 🤣
r/OpenAI

OpenAI is an AI research and deployment company. OpenAI's mission is to ensure that artificial general intelligence benefits all of humanity. We are an unofficial community. OpenAI makes ChatGPT, GPT-4, and DALL·E 3.


Members Online
Recall 🤣
r/OpenAI - Recall 🤣

Yann LeCun pushes back against the doomer narrative. Biggest dangers of LLM IMO are censorship and monitoring at unprecedented scale and devaluation of labour resulting in centralisation of power in the hands of people with capital (compute).
r/LocalLLaMA

Subreddit to discuss about Llama, the large language model created by Meta AI.


Members Online
Yann LeCun pushes back against the doomer narrative. Biggest dangers of LLM IMO are censorship and monitoring at unprecedented scale and devaluation of labour resulting in centralisation of power in the hands of people with capital (compute).

Are you polite to your AI?
r/ArtificialInteligence

The goal of the r/ArtificialIntelligence is to provide a gateway to the many different facets of the Artificial Intelligence community, and to promote discussion relating to the ideas and concepts that we know of as AI. These could include philosophical and social questions, art and design, technical papers, machine learning, where to find resources and tools, how to develop AI/ML projects, AI in business, how AI is affecting our lives, what the future may hold, and many other topics. Welcome.


Members Online
Are you polite to your AI?

I regularly find myself saying things like "Can you ...." or "Do it again for this please". Are you polite, neutral, or rude to AI?







Llama.cpp now supports distributed inference across multiple machines.
r/LocalLLaMA

Subreddit to discuss about Llama, the large language model created by Meta AI.


Members Online
Llama.cpp now supports distributed inference across multiple machines.

A few days ago, rgerganov's RPC code was merged into llama.cpp and the old MPI code has been removed. So llama.cpp supports working distributed inference now. You can run a model across more than 1 machine. It's a work in progress and has limitations. It currently is limited to FP16, no quant support yet. Also, I couldn't get it to work with Vulkan. But considering those limitations, it works pretty well. Inference is limited by network bandwidth. Using a 1 gigabit ethernet connection is faster than using a slower wifi connection. And the overall speed seems to be limited by the slowest machine. See my numbers below.

You can read more about it here.

https://github.com/ggerganov/llama.cpp/tree/master/examples/rpc

Here are some numbers between a M1 Max Studio and a PC with a 7900xtx. The model is Tiny Llama FP16.

This first set of numbers is from the Mac as the client.

Mac only

llama_print_timings: prompt eval time =     199.23 ms /   508 tokens (    0.39 ms per token,  2549.77 tokens per second)
llama_print_timings:        eval time =    8423.24 ms /   511 runs   (   16.48 ms per token,    60.67 tokens per second)

7900xtx only

llama_print_timings: prompt eval time =     100.50 ms /   508 tokens (    0.20 ms per token,  5054.98 tokens per second)
llama_print_timings:        eval time =   10574.48 ms /   511 runs   (   20.69 ms per token,    48.32 tokens per second)

Mac + 7900xtx

llama_print_timings: prompt eval time =     230.29 ms /   508 tokens (    0.45 ms per token,  2205.92 tokens per second)
llama_print_timings:        eval time =   11147.19 ms /   511 runs   (   21.81 ms per token,    45.84 tokens per second)

Here are numbers from the 7900xtx PC as the client.

Mac only

llama_print_timings: prompt eval time =     253.78 ms /   508 tokens (    0.50 ms per token,  2001.77 tokens per second)
llama_print_timings:        eval time =   10627.55 ms /   511 runs   (   20.80 ms per token,    48.08 tokens per second)

7900xtx only

llama_print_timings: prompt eval time =      40.93 ms /   508 tokens (    0.08 ms per token, 12412.34 tokens per second)
llama_print_timings:        eval time =    4249.10 ms /   511 runs   (    8.32 ms per token,   120.26 tokens per second)

Mac + 7900xtx

llama_print_timings: prompt eval time =     198.44 ms /   508 tokens (    0.39 ms per token,  2559.98 tokens per second)
llama_print_timings:        eval time =   11117.95 ms /   511 runs   (   21.76 ms per token,    45.96 tokens per second)

As you can see, the inference overall seems to be limited by the speed of the network connection. Which is about 46t/s for this model. Even though both the Mac and the 7900xtx are faster than 48t/s locally, they are limited to 48t/s when run remotely.

To further illustrate that the network is the bottleneck, here's the numbers for the Mac running over wifi instead of ethernet.

llama_print_timings: prompt eval time =     737.93 ms /   508 tokens (    1.45 ms per token,   688.41 tokens per second)
llama_print_timings:        eval time =   42125.17 ms /   511 runs   (   82.44 ms per token,    12.13 tokens per second)

It's only 12t/s for TG versus 48t/s.

One last number for number sake. Here's the llama 3 7B model at FP16 running across both.

llama_print_timings: prompt eval time =     826.07 ms /   508 tokens (    1.63 ms per token,   614.96 tokens per second)
llama_print_timings:        eval time =   29902.27 ms /   511 runs   (   58.52 ms per token,    17.09 tokens per second)






Bruh I haven't been here in like 2 weeks. Apparently Kai's gone? People seriously need to learn ignoring bots if you don't like it and also stop kink shaming cause this is getting out of hand.
r/JanitorAI_Official

Welcome to the Janitor AI sub! https://janitorai.com https://discord.gg/janitorai


Members Online
Bruh I haven't been here in like 2 weeks. Apparently Kai's gone? People seriously need to learn ignoring bots if you don't like it and also stop kink shaming cause this is getting out of hand.
r/JanitorAI_Official - Bruh I haven't been here in like 2 weeks. Apparently Kai's gone? People seriously need to learn ignoring bots if you don't like it and also stop kink shaming cause this is getting out of hand.


  • Subreddit to discuss about ChatGPT and AI. Not affiliated with OpenAI. Thanks Nat! members
  • Everything pertaining to the technological singularity and related topics, e.g. AI, human enhancement, etc. members
  • OpenAI is an AI research and deployment company. OpenAI's mission is to ensure that artificial general intelligence benefits all of humanity. We are an unofficial community. OpenAI makes ChatGPT, GPT-4, and DALL·E 3. members
  • /r/StableDiffusion is back open after the protest of Reddit killing open API access, which will bankrupt app developers, hamper moderation, and exclude blind users from the site. More info: https://rtech.support/docs/meta/blackout.html#what-is-going-on Discord: https://discord.gg/4WbTj8YskM Check out our new Lemmy instance: https://lemmy.dbzer0.com/c/stable_diffusion members
  • Subreddit to discuss about Llama, the large language model created by Meta AI. members
  • Character.AI lets you create and talk to advanced AI - language tutors, text adventure games, life advice, brainstorming and much more. members
  • An official subreddit for Midjourney related content. members
  • The goal of the r/ArtificialIntelligence is to provide a gateway to the many different facets of the Artificial Intelligence community, and to promote discussion relating to the ideas and concepts that we know of as AI. These could include philosophical and social questions, art and design, technical papers, machine learning, where to find resources and tools, how to develop AI/ML projects, AI in business, how AI is affecting our lives, what the future may hold, and many other topics. Welcome. members
  • Reddit’s home for Artificial Intelligence (AI) members
  • Subreddit dedicated to discussions on the advanced capabilities and professional applications of ChatGPT. members
  • Welcome to r/aiArt ! A community focused on the generation and use of visual, digital art using AI assistants such as Wombo Dream, Starryai, NightCafe, Midjourney, Stable Diffusion, and more. members
  • Welcome to our community! This subreddit focuses on the coding side of ChatGPT - from interactions you've had with it, to tips on using it, to posting full blown creations! Make sure to read our rules before posting! members
  • A subreddit dedicated to learning machine learning members
  • Welcome to the Janitor AI sub! https://janitorai.com https://discord.gg/janitorai members
  • This is a subreddit dedicated to discussing Claude, an AI assistant created by Anthropic to be helpful, harmless, and honest. Anthropic does not operate or control this community. This is a place for people to talk about Claude's capabilities, limitations, emerging personality and potential impacts on society as an artificial intelligence. All thoughtful, respectful opinions about Claude are welcome here. This subreddit uses Reddit's default content moderation filters. members
  • Weird Ai Generations. members
  • A place to discuss the SillyTavern fork of TavernAI. **So What is SillyTavern?** Tavern is a user interface you can install on your computer (and Android phones) that allows you to interact text generation AIs and chat/roleplay with characters you or the community create. SillyTavern is a fork of TavernAI 1.2.8 which is under more active development, and has added many major features. At this point they can be thought of as completely independent programs. Learn more: https://sillytavernai members
  • OpenAI's DALL·E 2, DALL·E 3, Bing DALL·E & OpenAI Sora members
  • r/Bard is a subreddit dedicated to discussions about Google's Gemini (Formerly Bard) AI. This subreddit is not affiliated with Google. members
  • A subreddit to talk about the DataAnnotation website! members
  • Creating magic with Suno AI. Not affiliated with the official Suno AI team. members
  • Following news and developments on ALL sides of the AI art debate (and more) members
  • Computer Vision is the scientific subfield of AI concerned with developing algorithms to extract meaningful information from raw images, videos, and sensor data. This community is home to the academics and engineers both advancing and applying this interdisciplinary field, with backgrounds in computer science, machine learning, robotics, mathematics, and more. We welcome everyone from published researchers to beginners! members
  • members
  • CHAI AI is the leading AI platform. LLM's are submitted via our chaiverse python-package. We serve them to users in our app. Our mission is to crowdsource the leap to AGI by bringing together language model developers and chat AI enthusiasts. Chaiverse: https://www.chaiverse.com/ Website: https://www.chai-research.com/ Twitter: https://www.twitter.com/chai_research Instagram: https://www.instagram.com/chairesearch/ LinkedIn: https://www.linkedin.com/company/chai-research/ members
  • Share your attempts to jailbreak ChatGPT, Gemini, Claude and generative AI in general. Ask questions. Hoard or share techniques. (Sub is now active) members
  • A place for you to showcase India's incredible beauty through generative AI. Please post your photos and videos. This community will support you through your AI journey. Everything on here should be generated using AI tools with Indian elements or made by AI artists in India. SFW content only. When in doubt, if it's border line NSFW or politically triggering, then resist posting. Showcase AI capabilities instead of political discourse. Photos and videos welcome. members
  • The official subreddit for FiggsAI! URL: www.figgs.ai Discord: https://discord.gg/figgsai members
  • Welcome to r/ChatGPTPromptGenius, the subreddit where you can find and share the best AI prompts! Our community is dedicated to curating a collection of high-quality & standardized prompts that can be used to generate creative and engaging AI conversations. Whether you're looking for inspiration or just want to see what others are doing with AI, this is the place to be! This subreddit has a companion browser extension called AI Prompt Genius. members
  • Welcome to Yodayo AI - the community where art meets artificial intelligence! Unleash your creativity by creating stunning AI-generated artwork and share it with fellow enthusiasts. Join us to explore the limitless possibilities of AI art and be part of an exciting community pushing the boundaries of creativity! members