Louis Brulé Naudet's picture

Louis Brulé Naudet

louisbrulenaudet

AI & ML interests

Research in business taxation and development, University Dauphine-PSL 📖 | Backed by the Microsoft for Startups Hub program and Google Cloud Platform for startups program | Hugging Face for Legal 🤗

Recent Activity

reacted to Smooke's post with 👀 3 days ago
AI Search Traffic Marketshare for Calling HackerNoon Blogs: 52% OpenAI, 30% Amazon & 18% Perplexity: https://hackernoon.com/ai-search-traffic-marketshare-for-calling-hackernoon-blogs-52percent-openai-30percent-amazon-and-18percent-perplexity OpenAI (51.8%) leads AI search traffic market share, based on my analysis of end-user–initiated AI Assistant and AI Search requests to HackerNoon. While Amazon (30.4%) and Perplexity (17.9%) also secured significant portions of the market, the total volume of requests (1,915,670 in 30 days) and competition among AI search providers indicate increasing reliance on AI for information retrieval and presentation. This analysis aggregates AI Assistant and AI Search queries to approximate end-user–initiated AI search traffic across HackerNoon URLs. Non-human traffic such as web crawlers, bots, and automated scripts have been filtered out to ensure data reflects only human-initiated requests. The dataset reviewed comprises instances where AI systems recommended HackerNoon content in response to human queries. Between February 28 and March 28, 2025, HackerNoon received 1,915,670 AI-referred search requests. OpenAI accounted for 991,580 requests, Amazon accounted for 581,990 requests , and Perplexity accounted for 342,100 requests, according to Cloudflare AI Audit tool, which currently tracks these top providers. HackerNoon is a technical audience, so our data is better positioned to answer questions like, if you work in tech what AI search engine do you rely on? Continue Reading... https://hackernoon.com/ai-search-traffic-marketshare-for-calling-hackernoon-blogs-52percent-openai-30percent-amazon-and-18percent-perplexity
View all activity

Organizations

MISATO-dataset's profile picture OpenVINO Toolkit's profile picture ONNXConfig for all's profile picture Gradio-Themes-Party's profile picture scikit-learn's profile picture Open-Source AI Meetup's profile picture BigLAM: BigScience Libraries, Archives and Museums's profile picture Université Dauphine-PSL's profile picture Stable Diffusion Dreambooth Concepts Library's profile picture Blog-explorers's profile picture OpenOrca's profile picture OpenLLM France's profile picture huggingPartyParis's profile picture Qwen's profile picture That Time I got Reincarnated as a Hugging Face Organization's profile picture ZeroGPU Explorers's profile picture Journalists on Hugging Face's profile picture Major TOM's profile picture MLX Community's profile picture Lemone's profile picture Social Post Explorers's profile picture Cognitive Computations's profile picture C4AI Community's profile picture Haiku's profile picture Dev Mode Explorers's profile picture Hugging Face for Legal's profile picture Hugging Face Discord Community's profile picture Dataset Tools's profile picture Data Is Better Together Contributor's profile picture

Posts 19

view post
Post
837
I’ve just released logfire-callback on PyPI, designed to facilitate monitoring of Hugging Face Transformer training loops using Pydantic Logfire 🤗

The callback will automatically log training start with configuration parameters, periodic metrics and training completion ⏱️

Install the package using pip:
pip install logfire-callback

First, ensure you have a Logfire API token and set it as an environment variable:
export LOGFIRE_TOKEN=your_logfire_token

Then use the callback in your training code:
from transformers import Trainer, TrainingArguments
from logfire_callback import LogfireCallback

# Initialize your model, dataset, etc.

training_args = TrainingArguments(
    output_dir="./results",
    num_train_epochs=3,
    # ... other training arguments
)

trainer = Trainer(
    model=model,
    args=training_args,
    train_dataset=train_dataset,
    callbacks=[LogfireCallback()]  # Add the Logfire callback here
)

trainer.train()

If you have any feedback, please reach out at @louisbrulenaudet
view post
Post
3241
I am pleased to introduce my first project built upon Hugging Face’s smolagents framework, integrated with Alpaca for financial market analysis automation 🦙🤗

The project implements technical indicators such as the Relative Strength Index (RSI) and Bollinger Bands to provide momentum and volatility analysis. Market data is retrieved through the Alpaca API, enabling access to historical price information across various timeframes.

AI-powered insights are generated using Hugging Face’s inference API, facilitating the analysis of market trends through natural language processing with DuckDuckGo search integration for real-time sentiment analysis based on financial news 🦆

Link to the GitHub project: https://github.com/louisbrulenaudet/agentic-market-tool