That’s right, be sure to check for communists under your bed everyone!
lmao maybe he’ll merge it with X
ah I haven’t kept up
looks like it’s Planetary now https://apps.apple.com/us/app/planetary-social/id1481617318
The big difference with R1 at least is that it is trained using reinforcement learning, and it gives you an explanation of how it arrived at a solution. I find the thinking bit is really fascinating cause it really reads like a train of thought. Here’s an example of what it outputs when I ask it to write a react component with a text input and a button:
<think> Alright, the user asked for a React component that includes a text input and a button. I need to write this in a way that’s clear and functional.
First, I’ll start by setting up the basic structure of a React component. I’ll import React and useState since we’ll need state management for the input value.
Next, I’ll create a functional component called TextInputButton. Inside this component, I’ll use the useState hook to manage the text input’s value. The initial state can be an empty string.
Then, I’ll define a handler function, handleChange, that updates the state whenever the user types into the input. This function will take the event object and set the new value using setTextInputValue.
I also need a function to handle the button click. For now, I’ll use handleClick with an alert message as a placeholder. The actual functionality can be added later based on requirements.
In the return statement, I’ll structure the JSX. I’ll include an input element of type text, binding its value to the state variable and attaching the handleChange function to the onChange event. This ensures that the state always reflects the current input value.
Below the input, I’ll add a button element. On clicking this button, it will trigger handleClick. I’ll also give it a class for styling purposes, like ‘button’ which can be styled with CSS if needed.
Finally, I’ll export the component so it can be used elsewhere in the application. I’ll make sure to include comments explaining each part for clarity. </think>
Here’s a simple React component with a text input and a button:
import React from 'react';
import { useState } from 'react';
function TextInputButton() {
const [text, setText] = useState('');
const handleChange = (event) => {
setText(event.target.value);
};
const handleClick = () => {
// Add your click handler logic here
alert('Button clicked!');
};
return (
<div>
<input
type="text"
value={text}
onChange={handleChange}
placeholder="Enter text..."
/>
<button onClick={handleClick}>Submit</button>
</div>
);
}
export default TextInputButton;
This component:
You can use this component in your application like:
<TextInputButton />
The input value is controlled through the text
state variable, and you can access it using text
. When the button is clicked, the handleClick
function will execute whatever logic you need.
I haven’t actually used that one, but doesn’t the same point apply here too? The whole point of DeepSeek is in distillation that makes runtime requirements smaller.
The main difference is speed and memory usage. Qwen is a full-sized, high-parameter model while qwen-distill is a smaller model created using knowledge distillation to mimic qwen’s outputs. If you have the resources to run qwen fast then I’d just go with that.
still going strong
I’m running deepseek-r1:14b-qwen-distill-fp16 locally and it produces really good results I find. Like yeah it’s a reduced version of the online one, but it’s still far better than anything else I’ve tried running locally.
you’d just join one of the pub servers here I think https://github.com/ssbc/ssb-server/wiki/Pub-Servers
Oh haha no, just sharing cause it’s a neat idea.
The Silo is a fun show, the book series it’s based on is really good too.
Surprised nobody mentioned scuttlebutt yet https://scuttlebutt.nz/
Because you’re a debate bro who wastes other people’s time arguing about subjects you have no clue about. If you want people to take you seriously spend a bit time educating yourself instead of speaking out of ignorance.
Study after study shows that China’s involvement in Africa has measurable positive impact, but here you are with your wikipedia link acting like you have a clue
that’s wrong, I belive that I have more freedom in (unregulated) capitalism that’s not state backed, than in a one party system without democratic principles
Yet, you do not believe in effective ways of organizing and actually challenging the system. So, really you believe in perpetuating the system while paying lip service to the idea of change.
that’s not true, I want others to be as free as I am
You clearly don’t since you reject practical methods that have been proven that free people from capitalism.
you’re literally making this up, I sayed that western germany was ALMOST as economicaly strong as the entire ussr, which is true
It’s not true, and never has been true in any meaningful sense.
this says something completely different
that statement itself wouldn’t be true if the russian economy was growing and they were exporting their war assets, but the opposite is the case, they produce the war assets to burn them on the battlefield and their economy also isn’t looking good
Meanwhile in the real world, Russian economy is booming, and the World Bank just reclassified Russia as a high income country https://blogs.worldbank.org/en/opendata/world-bank-country-classifications-by-income-level-for-2024-2025
The IMF forecasts that Russian economy is set to grow faster than all the western economies https://www.cnbc.com/2024/04/17/russia-forecast-to-grow-faster-than-advanced-economies-in-2024-imf.html
Thanks for providing further evidence of you being utterly divorced from reality.
that’s because you’re an ignoramus
Chinese investment in Africa has had ‘Significant And Persistently Positive’ long-term effects https://www.eurasiareview.com/01022021-chinese-investment-in-africa-has-had-significant-and-persistently-positive-long-term-effects-despite-controversy/
So, what you’re actually saying you’d rather live under capitalism because it’s not impacting your freedom, and you don’t care about others. Meanwhile, claiming that western Germany was economically stronger than the USSR is another example of you being divorced from reality. It’s the same sort of logic people applied to modern Russia comparing its GDP to Italy. Now, it turns out Russian industrial production is higher than all of the west combined. This is how capitalism rots people brains, they start thinking imaginary numbers are more important than material reality.
Yes, it’s democratic for the class that holds power.