Join 90,000+ creators
Share a recent learning with your followers.
Pose a thought-provoking question.
Get fresh prompts and ideas whenever you write - with examples of popular tweets.
Create your content without distractions - where it's easier to write and organize threads.
Automatically add LinkedIn versions to your posts.
+14
FollowersEasily track your engagement analytics to improve your content and grow faster.
@frankdilo
Feedback?
@albigiu
Love it 🔥
Write with your teammates and get feedback with comments.
🧵
Rewrite as thread start
🔥
Make it Punchier
✅
Fix Grammar
Get suggestions, tweet ideas, and rewrites powered by AI.
And much more:
Auto-Split Text in Tweets
Thread Finisher
Tweet Numbering
Pin Drafts
Connect Multiple Accounts
Automatic Backups
Dark Mode
Keyboard Shortcuts
Queue your tweet with a single click - or pick a time manually.
Time each tweet to perfection with Typefully's performance analytics.
Retweet and plug your tweets for automated engagement.
Enjoy daily prompts and ideas to inspire your writing.
Get inspiration from tweets that used these prompts and ideas.
Or skim through curated collections of trending tweets for each topic.
Brainstorm and bounce ideas with your teammates.
@frankdilo
Feedback?
@albigiu
Love it 🔥
Get feedback from coworkers before you hit publish.
Read, Write, Publish
Decide who can view, edit, or publish your drafts.
Share new drafts in Slack channel
New draft from RSS feed item content
New scheduled draft from Google Doc
New spreadsheet row from published tweet
Create new template draft every Monday
Send an email for every published thread
Create draft for new items in feeds folder
Thank new followers with a tweet
Share new drafts in Slack channel
New draft from RSS feed item content
New scheduled draft from Google Doc
New spreadsheet row from published tweet
Create new template draft every Monday
Send an email for every published thread
Create draft for new items in feeds folder
Thank new followers with a tweet
Get started with our generous free plan.
Open this if you want to see how ChatGPT built all my code.
Disclaimer: I build Machine Learning models for a living. I know what questions to ask, and I can spot mistakes in ChatGPT's suggestions. ChatGPT is an incredible tool, but you must understand how to use it properly. Let's get started!
11 ways ChatGPT saves me hours of work every day, and why you'll never outcompete those who use AI effectively. A list for those who write code:
The batch size is one of the most influential parameters in the outcome of a neural network. Here is everything you need to know about the batch size when training a neural network:
Here are the pictures of two different problems. Two classes. We want to use a neural network to solve these problems. What's the difference between them?
The first problem you face when starting with machine learning: Finding the perfect balance between training for too long or not training enough. Either one and your model will be trash. Here is the simplest and one of the most effective ways to work around this:
First of all, remember this: • Overfitting will likely happen if you train for too long. • Underfitting will likely happen if you don't train long enough. It's not about time, but about number of iterations—or epochs. We need a way to find the correct number.
This is a step-by-step guide to building your first deep learning model. Let's get started:
Building the model is essential, but it's just the beginning. I want to give you everything you need to understand what's going on: • A way to make changes • A way to experiment • A way to keep track of everything you did We are going to use a neat tool for that.
A lesson some people learn too late: Building a machine learning system is not like building regular software. But unless you've done it before, you'd think it's all pretty much the same. Here is a reason they are different and what you can do about it:
For the most part, regular software looks like this: • Build once • Run forever* I know there's no such thing as *forever*. Things change all the time. But this rate of change pales in comparison with machine learning systems. Here is an example:
Everyone knows they need to replace missing values in their dataset. Most people, however, miss one critical step. Here is what you aren't doing and how you can fix it:
I'll start with an example. A company surveys a bunch of people. Some people leave one particular question unanswered. When we collect the data, and before using it to build a model, we must take care of these missing values.
I'm sure you've used data augmentation before. Most people think of data augmentation as a technique to improve their model during training. This is true, but they are missing something. Here's a brilliant approach to improve the predictions of your model:
Let's start with a quick definition of data augmentation: Starting from an initial dataset, you can generate synthetic copies of each sample that will make a model resilient to variations in the data. This is awesome. But there's more we can do with it.
I've helped hundreds of people start with machine learning. Everyone asks me the same, fundamental question. But they all hate my answer. Engineers even more. Let me try again, but this time I'll show you a few lines of code that will 10x your process:
People always ask: "How do you know what to do now?" The answer is simple, but nobody likes to hear it: "Well, you don't know." After a few seconds, I follow up: "You need to experiment to find what works best." Here is the reality they don't want to hear about: