Discover and read the best of Twitter Threads about #keras

Most recents (15)

Roadmap to becoming Data Analyst in three months absolutely free. No need to pay a penny for this.

I have mentioned a roadmap with free resources.

A thread🧵👇
1. First Month Foundations of Data Analysis

A. Corey Schafer - Python Tutorials for Beginners:
B. StatQuest with Josh Starmer - Statistics Fundamentals:
C. Ken Jee - Data Analysis with Python
2. Second Month - Advanced Data Analysis Techniques

A. Sentdex - Machine Learning with Python
B. StatQuest with Josh Starmer - Machine Learning Fundamentals
C. Brandon Foltz - Business Analytics
Read 6 tweets
Python project ideas for beginners with source code

A thread 🧵👇
1. Calculator App
Source Code Link: github.com/programiz/Calc…
2. Expense Tracker
Source Code Link: github.com/prtm/Expense-T…
Read 7 tweets
Python for data science beginners roadmap

A thread 🧵👇
1. Python Basics
Codecademy's Python Course (codecademy.com/learn/learn-py…)
Python for Everybody Course (py4e.com)
2. Data Analysis Libraries
NumPy User Guide (numpy.org/doc/stable/use…)
Pandas User Guide (pandas.pydata.org/docs/user_guid…)
Matplotlib Tutorials (matplotlib.org/stable/tutoria…)
Read 7 tweets
👉 This article will explore the different ways to create models in Keras, along with their advantages and drawbacks: machinelearningmastery.com/three-ways-to-…

#Keras #MachineLearning
1. Using the Sequential Class
The Sequential Model is just as the name implies. It consists of a sequence of layers, one after the other. From the Keras documentation.
2. Using Keras’s Functional Interface
The next method of constructing Keras models you will explore uses Keras’s functional interface. The functional interface uses the layers as functions instead, taking in a Tensor and outputting a Tensor as well.
Read 4 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
What do the Vision Transformers learn? How do they encode anything useful for image recognition? In our latest work, we reimplement a number of works done in this area & investigate various ViT model families (DeiT, DINO, original, etc.).

Done w/ @ariG23498

1/
We also reimplemented different models in #Keras. These were first populated w/ pre-trained parameters & were then evaluated to ensure correctness.

Code, models, a tutorial, interactive demos (w/ @huggingface Spaces), visuals:

github.com/sayakpaul/prob…

2/
We’ve used the following methods for our analysis:

* Attention rollout
* Classic heatmap of the attention weights
* Mean attention distance
* Viz of the positional embeddings & linear projections

We hope our work turns out to be a useful resource for those studying ViTs.

3/
Read 5 tweets
Wanna try out the ConvNeXt models in @TensorFlow / #keras, inspect them, fine-tune them, etc.? Well, here they are: github.com/sayakpaul/Conv…

Includes a total of 15 I-1k and I-21k ConvNeXt models + conversion scripts, off-the-shelf inference, and fine-tuning code.

1/
These models ARE NOT opaque. You can load them like so and inspect whatever you need to:

2/ Image
Here's the full disclosure on the accuracy scores. Differences are mainly for library implementation differences. But happy to stand corrected if someone has other suggestions.

3/ Image
Read 5 tweets
RegNets have been successfully added to `tf.keras.applications` by @adityakane1 with tremendous help from the #Keras team.

Great architecture for studying scaling behaviors.

tensorflow.org/api_docs/pytho…

1/
Aditya had already added RegNets (-Y) to TF-Hub last year during GSoC. But he wanted to streamline them a bit and that endeavor resulted in `tf.keras.applications.regnet`. This is sheer hard work barring the cognitive load. Ain't that gritty?

tfhub.dev/adityakane2001…

2/
If you're looking for DL/CV interns, please consider @adityakane1. Beyond his knowledge, he is a good person and asks questions like a pro.

3/
Read 3 tweets
This has to be the best #Keras example in 2021 so far. My criteria are: brief coverage of the underlying concepts, code understandability, and correctness, lucidity in the language. But beyond these factors, this example is just too much awesomeness.

keras.io/examples/gener…
The author András Béres goes to great lengths to provide a comprehensive overview of the SoTA in GANs providing tips, tricks, and lessons from their experiences.

IMO, this is what makes an article truly fantastic.

Of course, the code is really high-quality.
Still `model.compile()` and `model.fit()`, btw! Pretty audacious, ain't it?

Can't help mentioning this time and time again 😂
Read 3 tweets
1/

Thread of the very best #YouTube channels and #Twitter accounts to follow for:

#AI/ #ML, #DeepLearning, #neural and all things #datascience

bit.ly/3g8pVDL

#AI #machinelearning @wiserin10 #datascience #bigdata #artificialintelligence
2/

@Analyticsindiam

Analytics India Magazine includes discussions on news, tips for the data ecosystem and a deep dive into #AI/#ML, #deeplearning and #neural networks

#YouTube subscriber count: 38k
3/

@Krishnaik06

Krish Naik is co-founder of iNeuron.ai and specialises in #machinelearning, #deeplearning, and computer vision. Krish’s #YouTube channel is a deep dive into all things #AI/#ML, perfect for beginners

YouTube subscriber count: 421k
Read 15 tweets
The Adversarial Robustness Toolbox (ART) = framework that uses generative adversarial neural networks (GANs) to protect deep learning models from security attacks

Thread⬇️
GANs = the most popular form of generative models.

GAN-based attacks:
+White Box Attacks: The adversary has access to the training environment, knowledge of the training algorithm
+Black Box Attacks: The adversary has no additional knowledge
2/⬇️
The goal of ART = to provide a framework to evaluate the robustness of a neural network.

The current version of ART focuses on four types of adversarial attacks:
+evasion
+inference
+extraction
+poisoning
3/⬇️
Read 5 tweets
New #Keras example is up on *consistency regularization*or an important recipe for semi-supervised learning and tackling distribution shifts as shown in *Noisy Student Training*.

keras.io/examples/visio…

1/n
This example provides a template for performing semi-supervised / weakly supervised learning. A few things one can plug right in:

* Incorporate more data while training the student.
* Filter the high-confidence predictions while training the student.

2/n
The example uses Stochastic Weight Averaging during training the teacher to induce geometric ensembling. With elements like Stochastic Dropout, the performance might even be better.

Here are the full experiments: git.io/JO55v.
Read 5 tweets
(1/7) My experience today to migrate my code from #Keras to Keras for @TensorFlow (tf.keras) has been a bit painful unfortunately. Some issue I encountered (@fchollet maybe this is of interest to you?):
(2/7) I found out that 1.13 doesn't have support for float16 in linear algebra operators, luckily this pull request now landed in 1.14-RC0 github.com/tensorflow/ten…
(3/7) It seems that Dropout on an input with a partially unknown shape, and a noise_shape of (None, 1, None), does not work in tf.keras. I could work around it but in the original Keras this works just fine.
Read 7 tweets
✨💡 This is an ace idea from @sarah_edo! 💕

👩‍💻 Be on the lookout for a @TensorFlow Advent Calendar tomorrow, as well, highlighting meaningful, high-impact projects and papers from our community. If you'd like for yours to be considered, please shoot me an @-mention!
#TFadvent begins today! 😄

For our first project, I'd like to highlight this accessibility example from @shekitup that uses @TensorFlowJS to interpret sign language—and then translates those signs into input that can be used by a home assistant! 🗣️✨

medium.com/tensorflow/get…
🎁 Day #2 of #TFadvent:

🤖 Check out this project from a recent hackathon at @ColbyCollege! The team trained a @TensorFlow model to learn muscle movements, then used that model to send signals to a prosthetic arm, controlling one finger at a time. ✨

👉: m.facebook.com/notes/daviscon…
Read 32 tweets
✨🧠 The ecosystem that has grown up around @TensorFlow in the last few years blows my mind. There's just so much functionality, compared to some of the other, newer frameworks.

👉Consider this an ever-expanding thread for me to take notes + wrap my brain around products. Ready?
1) @TensorFlow Extended (TFX)

It's no secret that I 💕 #TFX and all of its tooling for deploying machine learning models into production. If you care about keeping your models up-to-date and monitoring them, you should check out the product + its paper.

tensorflow.org/tfx/?hl=zh-cn
2) @TensorFlow Hub

If you want to train your model on a small data set, or improve generalization, you'll need to use something called transfer learning. #TFHub modules make it easy—and are available in an #OSS marketplace: tfhub.dev.

site: tensorflow.org/hub/
Read 40 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!