Skip Navigation

Posts
12
Comments
16
Joined
4 yr. ago

  • Removed

    For real

    Jump
  • I lost it at "Herobrine"

  • I thought this was a parody account at first

  • selfish redrawing of territorial lines

    Who was it that drew the 11-dash line? (spoiler: not the PRC)

  • Exactly! but the funny thing is, I've only seen these disclaimers on non-political videos.

  • GenZedong @lemmygrad.ml

    Some Chinese content creators will preface their videos with this disclaimer

  • LMAO

    Jump
  • I believe it was "永远吹冲锋号". You can find it on Youtube

  • GenZedong @lemmygrad.ml

    LMAO

  • Comradeship // Freechat @lemmygrad.ml

    Does anybody else have experiences with psychedelics?

  • GenZedong @lemmygrad.ml

    Great interview with former western journalist who shares stories about how the west meddles with the media

  • Thank you for your service 🙏

  • GenZedong @lemmygrad.ml

    hmm...

  • This will definitely turn the tide of the war 🤯

  • GenZedong @lemmygrad.ml

    Reminder that Lenin and Stalin come up when you google 'best people in history'

  • shitposting @lemmygrad.ml

    chino

  • Does anyone actually understand the appeal of these streams? Is it just kids that watch it? or is it an NPC fetish like moist says?

  • Yeah it seems that the discourse varies a lot based on which platform you're on. I've heard a lot of bad things about the Baidu forums lol

  • GenZedong @lemmygrad.ml

    My experience with Chinese social media

  • I would much rather recommend you to find words to learn instead of characters, since this will actually let you understand the characters a lot better. Learning the words and the characters they are made out of will help you map the underlying meaning of the characters a lot better, since characters in themselves are hard to define using english words. Take for example "面" which if you look it up in a dictionary will be translated as: surface, flour, noodles, aspect, side. The meaning of this character will depend on what characters it is used in conjunction with, and so how will you be able to understand which of these meanings it has if you don't know the words and grammar?

    Also, I would strongly recommend that you start with focusing on listening instead of reading, since this will help you develop a better accent and it will make learning the characters a lot more effortless.

    Additionally, understanding comments on social media is actually kind of an advanced skill, since you need a very good understanding of the culture and references.

  • Traffic does seem to be greatly improved, and that's like the main reason I'm hyped about this game. Now, you'll have to care about parking, cost and comfort of the transit, meaning that I can put all of my knowledge gained from watching RMTransit and NotJustBikes to good use. Also, you can now build walking-only streets in the base game

  • Games @lemmygrad.ml

    Anybody else hyped for Cities Skylines 2?

  • Unpopular opinion: I like these changes

  • Some real 'we were always at war with Eurasia' shit 😂

  • I'm guessing Prigozhin just gets some more money and he'll get away without severe charges.

  • First off, as someone who has programmed GPT stuff since way before ChatGPT, we don't even need to train our own model. That is overly expensive and unnecessary for our purpose. What is much smarter to do in this case is to take all of the Marxist works and let a chatbot access the contents of the works using semantic search. The way we do this is to convert the works into small chunks which we then convert into embedding vectors. When the user sends a message to the chatbot, the message and the context of the message will be converted into an embedding vector. We then run a dot-product between the message of the user and the chunks of the texts in order to find the most relevant chunks to the question which the user has asked. Then a pre-trained model can make use of the information fetched in order to answer the user's question.

    Of course, training one's own model can be good if we want it to be even more accurate and familiar with the material, however a good starting point would be to use semantic search.