Discover and read the best of Twitter Threads about #pytorch

Most recents (24)

🚀 Eager to know how digital transformation can impact businesses? Let's dive in! 🌟

#ML

#ArtificialIntelligence #BigData #AINews #Analytics #DataScience #AI #PyTorch #Python
🤖 With Web3 and AI on the rise, we are experiencing another wave of tech disruption. These cutting-edge technologies are revolutionizing the way businesses operate and interact with customers.
💥 In the coming months, we can expect to witness the emergence of new startups that leverage the power of Web3 and AI. These companies are likely to challenge traditional businesses and potentially make them obsolete.
Read 5 tweets
How to get started with machine learning: From 0 to Engineer.

(thread)
1. Math - via @khanacademy

Use these resources (all links in the last tweet):

- Khan Academy - Multivariable Calculus
- Khan Academy - Differential Equations
- Khan Academy - Linear Algebra
- Khan Academy - Statistics Probability
2. Learn Python - via @freeCodeCamp

- Learn Python: Full Course For Beginners
- Intermediate Python: Programming Course
Read 11 tweets
Machine Learning is hard.

I felt like quitting whenever I get baffled by the amount of information to learn.

But I followed the path to learning from Math for ML.

Here are the 5 critical reasons why you should start with Math concepts for ML

THREAD🧵 ↓
🤔 Why Math for ML:
**********************
📌 Machine learning algorithms rely on mathematical calculations to make predictions and decisions
📌 Many machine learning techniques, such as neural networks and deep learning, are based on linear algebra and calculus
Read 12 tweets
1. Math and Statistics
Intro to Statistics - Udacity
🌐 bit.ly/3GMZe5n

Statistics - Udacity
🌐 bit.ly/3VKKzfB

Statistical Learning - Stanford University
🌐 bit.ly/3VqA5Sj
2. Excel
Introduction to MS Excel - Simplilearn
🌐 bit.ly/3u1h1OJ

Microsoft Excel: Online Tutorial for Beginners - Chandoo
🌐 bit.ly/3XzUHJO

Microsoft Excel Tutorial for Beginners - Free Code Camp
🌐 bit.ly/3Vax74G
Read 7 tweets
On #biocompute news, $TSLA Tesla AI day gave some technical details on how they do their training and video labelling. It seems $NVDA Nvidia GPUs are the norm, with a 14,000 HPC heavily optimised on the software side. #pytorch #AVX2 #CUDA #SMT #smol #CUDNN Image
None of this is for the purpose of #Bioinformatics applications, rather here it's for Full Self-Driving software, but the technical details show some choices for high-throughput #AI training that one could compare to the #ComputationalBiology #ComputeAcceleration world.
Read 12 tweets
Interested in learning more about #DataScience, #MachineLearning or #AI? I’ve got a few places and resources for medics to start with. Anyone can do it with enough time and effort! Soon enough you’ll be making your own neural networks

1/16. A thread 🧵.
2/16. Everyone has their preferences with programming languages. However if you’re starting from scratch, I highly recommend #Python. It is easy to learn, has a wide variety of applications and you will find it is much easier to perform even the most basic of statistics.
3/16. It also gives you access to multiple libraries that are used heavily by the machine learning community such as #Keras, #TensorFlow and #PyTorch.
Read 19 tweets
🔴 PyTorch 101
🟡 Auto differentiation in #PyTorch
#DataScience #MachineLearning #100daysOfCode Image
💫 Building a simple neural network ⬇️ Image
💫 What is computational graph ❓⬇️ Image
Read 7 tweets
A few weeks ago I shared how you can animate a picture of yourself in #Python. Well!!! you can also animate a video of yourself too🐍✨

#animeganv2forvideos is an open ML project that uses #PyTorch to let you do this. Here's what it looks like in my terminal. Full code below👇🏿💕
This code is based on code in the project's public collab notebook✨ I edited it to run on a cpu and to be able to use it in my terminal. Pictures are in order👩🏿‍💻

You can also have a look at the original code here github.com/nateraw/animeg… ImageImageImage
As a final note, I found this awesome project through @huggingface's spaces🤗💕

If you don't want to write the code and just want to convert your video automatically or turn your webcam stream directly to animated video use the app here
huggingface.co/spaces/nateraw…
Read 4 tweets
2/16

"roc_auc_score" is defined as the area under the ROC curve, which is the curve having False Positive Rate on the x-axis and True Positive Rate on the y-axis at all classification thresholds.

#DataScience #MachineLearning #DeepLearning #100DaysOfMLCode #Python
Read 16 tweets
2/16

"roc_auc_score" is defined as the area under the ROC curve, which is the curve having False Positive Rate on the x-axis and True Positive Rate on the y-axis at all classification thresholds.

#DataScience #MachineLearning #DeepLearning #100DaysOfMLCode #Python
Read 17 tweets
2/n
Following tips may boost model performance across different network structures with up to 5% (mAP or mean Average Precision) without increasing computational costs in any way.

#computervision #pytorch #deeplearning #deeplearningai #100daysofmlcode #neuralnetworks #AI
3/n
Visually Coherent Image Mix-up for Object Detection. This has already been proven to be successful in lessening adversarial fears in network classification after testing it on COCO 2017 and PASCAL datasets with YOLOv3 models.
#computervision #pytorch
Read 13 tweets
🤖PyTorch is one of the most popular Deep Learning frameworks in use today. We have received numerous requests to cover topics related to Computer Vision in #PyTorch.

We hear you, here are our top free resources that will get you started. 🚀
What is PyTorch?

🔗pyimagesearch.com/2021/07/05/wha…

✨When to choose PyTorch
✨Understand the differences with other DL libraries
✨GPU support
✨Is PyTorch more suitable for research?
Your First Neural Network with PyTorch

🔗pyimagesearch.com/2021/07/12/int…

✨Create NN architecture from scratch using PyTorch
✨Initialize optimizers and loss function
✨Looping over training epochs
✨Backpropagate the network
Read 7 tweets
Memory Efficient Coding in #PyTorch
20 tricks to optimize your PyTorch code

Let's break some of the bad habits while writing PyTorch code 👇

A thread 🧵
1. PyTorch dataloader supports asynchronous data loading in a separate worker subprocess. Set pin_memory=True to instruct the DataLoader to use pinned memory which enables faster and asynchronous memory copy from host to GPU Image
2. Disable gradient calculation for validation or inference. Gradients aren't needed for inference or validation, so perform them within torch.no_grad() context manager. Image
Read 25 tweets
Pandas is a fast, powerful, flexible and open source data analysis and manipulation tool.

A Mega thread 🧵covering 10 amazing Pandas hacks and how to efficiently use it(with Code Implementation)👇🏻
#Python #DataScientist #Programming #MachineLearning #100DaysofCode #DataScience
1/ Indexing data frames
Indexing means to selecting all/particular rows and columns of data from a DataFrame. In pandas it can be done using two constructs —
.loc() : location based
It has methods like scalar label, list of labels, slice object etc
.iloc() : Interger based
2/ Slicing data frames
In order to slice by labels you can use loc() attribute of the DataFrame.

Implementation —
Read 17 tweets
How negative was my Twitter feed in the last few hours? In the replies are a few models that analyze the sentiment of my home timeline feed on Twitter for the last 24 hours using the Twitter API.
GitHub: github.com/ghadlich/Daily…
#NLP #Python
I analyzed the sentiment on the last 253 tweets from my home feed using a pretrained #BERT model from #huggingface. A majority (70.0%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
I analyzed the sentiment on the last 253 tweets from my home feed using a pretrained #VADER model from #NLTK. A majority (56.1%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
Read 7 tweets
How negative was my Twitter feed in the last few hours? In the replies are a few models that analyze the sentiment of my home timeline feed on Twitter for the last 24 hours using the Twitter API.
GitHub: github.com/ghadlich/Daily…
#NLP #Python
I analyzed the sentiment on the last 272 tweets from my home feed using a pretrained #BERT model from #huggingface. A majority (69.9%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
I analyzed the sentiment on the last 272 tweets from my home feed using a pretrained #VADER model from #NLTK. A majority (57.0%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
Read 7 tweets
How negative was my Twitter feed in the last few hours? In the replies are a few models that analyze the sentiment of my home timeline feed on Twitter for the last 24 hours using the Twitter API.
GitHub: github.com/ghadlich/Daily…
#NLP #Python
I analyzed the sentiment on the last 378 tweets from my home feed using a pretrained #BERT model from #huggingface. A majority (68.0%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
I analyzed the sentiment on the last 378 tweets from my home feed using a pretrained #VADER model from #NLTK. A majority (60.3%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
Read 7 tweets
How negative was my Twitter feed in the last few hours? In the replies are a few models that analyze the sentiment of my home timeline feed on Twitter for the last 24 hours using the Twitter API.
GitHub: github.com/ghadlich/Daily…
#NLP #Python
I analyzed the sentiment on the last 476 tweets from my home feed using a pretrained #BERT model from #huggingface. A majority (70.0%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
I analyzed the sentiment on the last 476 tweets from my home feed using a pretrained #VADER model from #NLTK. A majority (60.5%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
Read 7 tweets
How negative was my Twitter feed in the last few hours? In the replies are a few models that analyze the sentiment of my home timeline feed on Twitter for the last 24 hours using the Twitter API.
GitHub: github.com/ghadlich/Daily…
#NLP #Python Image
I analyzed the sentiment on the last 528 tweets from my home feed using a pretrained #BERT model from #huggingface. A majority (68.0%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot Image
I analyzed the sentiment on the last 528 tweets from my home feed using a pretrained #VADER model from #NLTK. A majority (58.9%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot Image
Read 7 tweets
How negative was my Twitter feed in the last few hours? In the replies are a few models that analyze the sentiment of my home timeline feed on Twitter for the last 24 hours using the Twitter API.
GitHub: github.com/ghadlich/Daily…
#NLP #Python Image
I analyzed the sentiment on the last 569 tweets from my home feed using a pretrained #BERT model from #huggingface. A majority (65.4%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot Image
I analyzed the sentiment on the last 569 tweets from my home feed using a pretrained #VADER model from #NLTK. A majority (53.6%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot Image
Read 7 tweets
Hugging Face Transformers

Building transformer architecture remains an incredible challenge.

Hugging Face Transformers is one of the most popular and advanced frameworks for Transformer architectures.
⬇️1/3 Image
Hugging Face Transformers provides

- implementations of 100s of pre-trained transformer models
- APIs to quickly download and use
- implementations for both #PyTorch and #TensorFlow
2/3
This is a thread from Edge#111 – our series about transformers.

Keep learning every day. Subscribe to our Twitter @TheSequenceAI.
3/3
Read 3 tweets
How negative was my Twitter feed in the last few hours? In the replies are a few models that analyze the sentiment of my home timeline feed on Twitter for the last 24 hours using the Twitter API.
GitHub: github.com/ghadlich/Daily…
#NLP #Python
I analyzed the sentiment on the last 239 tweets from my home feed using a pretrained #BERT model from #huggingface. A majority (61.1%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
I analyzed the sentiment on the last 239 tweets from my home feed using a pretrained #VADER model from #NLTK. A majority (61.5%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
Read 7 tweets
How negative was my Twitter feed in the last few hours? In the replies are a few models that analyze the sentiment of my home timeline feed on Twitter for the last 24 hours using the Twitter API.
GitHub: github.com/ghadlich/Daily…
#NLP #Python
I analyzed the sentiment on the last 288 tweets from my home feed using a pretrained #BERT model from #huggingface. A majority (65.6%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
I analyzed the sentiment on the last 288 tweets from my home feed using a pretrained #VADER model from #NLTK. A majority (62.8%) were classified as negative.
#Python #NLP #Classification #Sentiment #GrantBot
Read 7 tweets

Related hashtags

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3.00/month or $30.00/year) and get exclusive features!

Become Premium

Too expensive? Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal Become our Patreon

Thank you for your support!