Klee Young PRO

k-young

AI & ML interests

None yet

Recent Activity

reacted to openfree's post with ๐Ÿ”ฅ 9 days ago
๐ŸŒŸ MoneyRadar - AI-Powered Global News Analysis System ๐Ÿ’ป Live Demo: https://huggingface.co./spaces/openfree/MoneyRadar ๐ŸŽฏ Core Features 1. ๐Ÿค– 24/7 Automated News Scanning Auto-collection of Top 100 trending news Real-time monitoring across 60 countries Smart filtering of investment-critical news 2. ๐Ÿ” Advanced Custom Search Unlimited keyword search capability Country/language-specific search options Real-time trend-based related keywords 3. ๐ŸŽจ Smart Analysis & Visualization AI-powered sentiment analysis Automated content summarization Investment decision-supporting insights โšก Automated Information Collection Key Companies (NVIDIA, APPLE, TESLA, etc.) Earnings/Forecasts Product/Technology announcements Market share changes M&A and major news Financial Markets & Digital Assets Macroeconomic indicators Regulatory changes Market sentiment analysis Major exchange updates ๐Ÿ“Š Business Applications Real-time market trend tracking Competitor movement monitoring Early investment opportunity detection Risk early warning system ๐ŸŒŸ Key Differentiators Full Automation Zero manual intervention Real-time data updates Automated result storage/management User-Centric Design Intuitive interface Customizable alerts Mobile optimization Advanced Analytics News cross-checking Historical tracking Trend prediction support Join Community ๐Ÿ’ฌ "With MoneyRadar, never miss a beat in the global market movements!"
liked a Space about 2 months ago
gokaygokay/PonyRealism
View all activity

Organizations

YoungDM's profile picture

k-young's activity

reacted to openfree's post with ๐Ÿ”ฅ 9 days ago
view post
Post
4325
๐ŸŒŸ MoneyRadar - AI-Powered Global News Analysis System

๐Ÿ’ป Live Demo: openfree/MoneyRadar

๐ŸŽฏ Core Features
1. ๐Ÿค– 24/7 Automated News Scanning

Auto-collection of Top 100 trending news
Real-time monitoring across 60 countries
Smart filtering of investment-critical news

2. ๐Ÿ” Advanced Custom Search

Unlimited keyword search capability
Country/language-specific search options
Real-time trend-based related keywords

3. ๐ŸŽจ Smart Analysis & Visualization

AI-powered sentiment analysis
Automated content summarization
Investment decision-supporting insights

โšก Automated Information Collection
Key Companies (NVIDIA, APPLE, TESLA, etc.)

Earnings/Forecasts
Product/Technology announcements
Market share changes
M&A and major news

Financial Markets & Digital Assets

Macroeconomic indicators
Regulatory changes
Market sentiment analysis
Major exchange updates

๐Ÿ“Š Business Applications

Real-time market trend tracking
Competitor movement monitoring
Early investment opportunity detection
Risk early warning system

๐ŸŒŸ Key Differentiators

Full Automation

Zero manual intervention
Real-time data updates
Automated result storage/management


User-Centric Design

Intuitive interface
Customizable alerts
Mobile optimization


Advanced Analytics

News cross-checking
Historical tracking
Trend prediction support



Join Community ๐Ÿ’ฌ
"With MoneyRadar, never miss a beat in the global market movements!"
upvoted an article 2 months ago
view article
Article

Use Models from the Hugging Face Hub in LM Studio

By yagilb โ€ข
โ€ข 136
reacted to m-ric's post with โค๏ธ 3 months ago
view post
Post
1223
Made a new app to visualize the LLM race โ‡’ ๐—ก๐—ผ ๐—˜๐˜‚๐—ฟ๐—ผ๐—ฝ๐—ฒ๐—ฎ๐—ป ๐—ฐ๐—ผ๐—บ๐—ฝ๐—ฎ๐—ป๐˜† ๐—ถ๐—ป ๐˜๐—ต๐—ฒ ๐˜๐—ผ๐—ฝ ๐Ÿญ๐Ÿฌ ๐Ÿ‡ช๐Ÿ‡บโŒ

See the app here ๐Ÿ‘‰ m-ric/llm-race-to-the-top

I've adapted an app by @andrewrreed that tracks progress of LLMs ( andrewrreed/closed-vs-open-arena-elo), on the Chatbot Arena leaderboard, to compare companies from different countries.

The outcome is quite sad, as a Frenchman and European.

The top 10 is exclusively US ๐Ÿ‡บ๐Ÿ‡ธ and Chinese ๐Ÿ‡จ๐Ÿ‡ณ companies (after great Chinese LLM releases recently, like the Qwen2.5 series), with the notable exception of Mistral AI ๐Ÿ‡ซ๐Ÿ‡ท.

American companies are making fast progress, Chinese ones even faster. Europe is at risk of being left behind. And the EU AI Act hasn't even come into force yet to slow down the EU market. We need to wake up ๐Ÿ˜ฌ

โš ๏ธ Caution: This Chatbot Arena ELO ranking is not the most accurate, especially at high scores like this, because LLM makers can game it to some extent.
  • 1 reply
ยท
upvoted an article 4 months ago
view article
Article

The 5 Most Under-Rated Tools on Hugging Face

โ€ข 86
reacted to m-ric's post with ๐Ÿ‘€ 5 months ago
view post
Post
1072
๐Ÿง  Stanford paper might be the key to OpenAI o1โ€™s performance: Whatโ€™s so effective about Chain of Thought? โ‡’ it unlocks radically different sequential tasks!

๐Ÿ’ญย Reminder: A Chain of Thought (CoT) means that you instruct the model to โ€œthink step by stepโ€. Often itโ€™s literally just putting in the prompt โ€œletโ€™s think step by step.โ€

๐Ÿค”ย This method has been shown to be unreasonably effective to increase perf on benchmarks. However why it works so well remains unclear.

Here's the scoop: Transformers are amazing at parallel processing, but they've always struggled with tasks that require sequential reasoning.

โ›”๏ธ For instance if you ask them the result of 3^2^2^2^โ€ฆ, with 20 iterations, theyโ€™ll nearly always fail.

๐Ÿ’กย Indeed, researchers prove mathematically, by assimilating transformers networks to logical circuits, that effectively they cannot solve sequential tasks that require more than a certain threshold of sequences.

But CoT enables sequential reasoning:

- ๐Ÿงฑ Each step in the CoT corresponds to simulating one operation in a complex circuit.
- ๐Ÿ”„ This allows the transformer to "reset" the depth of intermediate outputs, overcoming previous limitations.
- ๐Ÿš€ Thus, with CoT, constant-depth transformers can now solve ANY problem computable by polynomial-size circuits! (That's a huge class of problems in computer science.)
- ๐Ÿ”‘ Transformers can now handle tricky tasks like iterated squares (computing 3^2^2^2^2) composed permutations and evaluating circuits - stuff that requires serial computation.
- ๐Ÿ“Šย The improvement is especially dramatic for transformers with a limited depth. Empirical tests on four arithmetic problems showed massive accuracy gains with CoT on inherently serial tasks.

Main takeaway: Chain-of-thought isn't just a neat trick - it fundamentally expands what transformer models can do!

Read the paper ๐Ÿ‘‰ย  Chain of Thought Empowers Transformers to Solve Inherently Serial Problems (2402.12875)
reacted to loztcontrol's post with ๐Ÿ‘ 5 months ago
view post
Post
1688
I am developing a personal project to further support and help people living with Depression and Anxiety. As I suffer mainly from chronic depression I would like to create a tool based on AI that can monitor my moods but first I will collect information about myself, my moods and after collecting at least 6 months of my moods and my writings I will be able to formulate as a kind of recognition when my emotions are โ€œout of controlโ€ I mean those states or feelings of emptiness. I think that sometimes not all of us have access to treatments and therapies so I would like to develop in a free way this project that I have just started today. I have already started the code to register events of my moods. I will share with you the updates :D


import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.naive_bayes import MultinomialNB
from sklearn.metrics import accuracy_score, classification_report
import nltk
from nltk.corpus import stopwords
import string
import matplotlib.pyplot as plt
from datetime import datetime

nltk.download('stopwords')

data = {
    'text': [
        "Hoy me siento bien, aunque un poco cansado", 
        "Me siento triste y solo", 
        "Esto es frustrante, todo sale mal", 
        "Estoy nervioso por lo que va a pasar",
        "No puedo con este estrรฉs", 
        "Todo estรก saliendo bien, me siento optimista", 
        "Siento miedo de lo que pueda suceder", 
        "Hoy fue un dรญa horrible"
    ],
    'emotion': [
        'felicidad', 
        'tristeza', 
        'enojo', 
        'ansiedad', 
        'ansiedad', 
        'felicidad', 
        'miedo', 
        'tristeza'
    ]
}

df = pd.DataFrame(data)

# Funciรณn para limpiar el texto
def clean_text(text):

Yes, I speak Spanish :P too
  • 3 replies
ยท
reacted to MonsterMMORPG's post with ๐Ÿ‘ 6 months ago
view post
Post
5296
FLUX Local & Cloud Tutorial With SwarmUI - FLUX: The Groundbreaking Open Source txt2img Model Outperforms Midjourney & Others - FLUX: The Anticipated Successor to SD3

๐Ÿ”— Comprehensive Tutorial Video Link โ–ถ๏ธ https://youtu.be/bupRePUOA18

FLUX represents a milestone in open source txt2img technology, delivering superior quality and more accurate prompt adherence than #Midjourney, Adobe Firefly, Leonardo Ai, Playground Ai, Stable Diffusion, SDXL, SD3, and Dall E3. #FLUX, a creation of Black Forest Labs, boasts a team largely comprised of #StableDiffusion's original developers, and its output quality is truly remarkable. This statement is not hyperbole; you'll witness its capabilities in the tutorial. This guide will demonstrate how to effortlessly install and utilize FLUX models on your personal computer and cloud platforms like Massed Compute, RunPod, and a complimentary Kaggle account.

๐Ÿ”— FLUX Setup Guide (publicly accessible) โคต๏ธ
โ–ถ๏ธ https://www.patreon.com/posts/106135985

๐Ÿ”— FLUX Models One-Click Robust Automatic Downloader Scripts โคต๏ธ
โ–ถ๏ธ https://www.patreon.com/posts/109289967

๐Ÿ”— Primary Windows SwarmUI Tutorial (Essential for Usage Instructions) โคต๏ธ
โ–ถ๏ธ https://youtu.be/HKX8_F1Er_w

๐Ÿ”— Cloud-based SwarmUI Tutorial (Massed Compute - RunPod - Kaggle) โคต๏ธ
โ–ถ๏ธ https://youtu.be/XFUZof6Skkw

๐Ÿ”— SECourses Discord Server for Comprehensive Support โคต๏ธ
โ–ถ๏ธ https://discord.com/servers/software-engineering-courses-secourses-772774097734074388

๐Ÿ”— SECourses Reddit Community โคต๏ธ
โ–ถ๏ธ https://www.reddit.com/r/SECourses/

๐Ÿ”— SECourses GitHub Repository โคต๏ธ
โ–ถ๏ธ https://github.com/FurkanGozukara/Stable-Diffusion

๐Ÿ”— Official FLUX 1 Launch Announcement Blog Post โคต๏ธ
โ–ถ๏ธ https://blackforestlabs.ai/announcing-black-forest-labs/

Video Segments

0:00 Introduction to the state-of-the-art open source txt2img model FLUX
5:01 Process for integrating FLUX model into SwarmUI
....