Spark in me
2.29K subscribers
727 photos
47 videos
114 files
2.62K links
Lost like tears in rain. DS, ML, a bit of philosophy and math. No bs or ads.
Download Telegram
2019 DS / ML digest 13

Link

Highlights of the week(s):
- x10 faster STT network?
- Train on 1/2 of test resolution - new down-to-earth SOTA approach to image classification? Old news!;
- New workhorse light-weight network - MixNet?

#digest
#deep_learning
Managing your DS / ML environment neatly and in style

If you have a sophisticated environment that you need to do DS / ML / DL, then using a set of Docker images may be a good idea.
You can also tap into a vast community of amazing and well-maintained Dockerhub repositories (e.g. nvidia, pytorch).

But what you have to do this for several people? And use it with a proper IDE via ssh?
A well-known features of Docker include copy on write and user "forwarding". If you approach naively, each user will store his own images, which take quite some space.
And also you have to make your ssh daemon works inside of a container as a second service.

So I solved these "challenges" and created 2 public layers so far:
- Basic DS / ML layer - FROM aveysov/ml_images:layer-0 - from dockerfile;
- DS / ML libraries - FROM aveysov/ml_images:layer-0- from dockerfile;

Your final dockerfile may look something like this just pulling from any of those layers.
Note that when building this, you will need to pass your UID as a variable, e.g.:

docker build --build-arg NB_UID=1000 -t av_final_layer -f Layer_final.dockerfile .


When launched, this launched a notebook with extensions. You can just exec into the machine itself to run scripts or use an ssh daemon inside (do not forget to add your ssh key and service ssh start).


#deep_learning
#data_science
Using public Dockerhub account for your private small scale deploy

Also a lifehack - you can just use Dockerhub for your private stuff, just separate the public part and the private part.
Push the public part (i.e. libraries and frameworks) to Dockerhub/

You private Dockerfile will be then something like:
FROM your_user/your_repo:latest

COPY your_app_folder your_app_folder
COPY app.py app.py

EXPOSE 8000

CMD ["python3", "app.py"]
PyTorch 1.2 release

Link

Key features:
- Tensorboard logging in now out of beta;
- They continue improving JIT and ONNX;
- NN.Transformer is a layer now;
- Looks like SyncBn is also more or less stable;
- nn.Embedding: support float16 embeddings on CUDA;
- AdamW;
- Numpy compatibility;

#deep_learning
Extreme NLP network miniaturization

Tried some plain RNNs on a custom in the wild NER task.
The dataset is huge - literally infinite, but manually generated to mimick in-the-wild data.

I use EmbeddingBag + 1m n-grams (an optimal cut-off). Yeah, on NER / classification it is a handy trick that makes your pipeline totally misprint / error / OOV agnostic. Also FAIR themselves just guessed this too. Very cool! Just add PyTorch and you are golden.

What is interesting:
- Model works with embedding sizes 300, 100, 50 and even 5! 5 is dangerously close to OHE, but doing OHE on 1m n-grams kind-of does not make sense;
- Model works with various hidden sizes
- Naturally all of the models run on CPU very fast, but the smallest model also is very light in terms of its weights;
- The only difference is - convergence time. It kind of scales as a log of model size, i.e. model with 5 takes 5-7x more time to converge compared to model with 50. I wonder what if I use embedding size of 1?;

As added bonus - you can just store such miniature model in git w/o lfs.
What is with training transformers on US$250k worth of compute credits you say?)

#nlp
#data_science
#deep_learning
My foray into the STT Dark Forest

My tongue-in-cheek article on ML in general, and how to make your STT model train 3-4x faster with 4-5x less weights with the same quality

https://spark-in.me/post/stt-dark-forest

#data_science
#deep_learning
#stt
2019 DS / ML digest 14

Link

Highlights of the week(s):

- FAIR embraces embedding bags for misspellings;
- New version of Adam - RAdam. But on the only real test author has concluded (Imagenet) - SGD is better;
- Yet another LSTM replacement - SRU. Similar to QRRN - it requires additional dependencies;

#digest
#deep_learning
Poor man's ensembling techniques

So you want to improve your model's performance a bit.
Ensembling helps. But as is ... it's useful only on Kaggle competitions, where people stack over9000 networks trained on 100MB of data.

But for real life usage / production, there exist ensembling techniques, that do not require significant computation cost increase (!).
All of this is not mainstream yet, but it may work on you dataset!
Especially if your task is easy and the dataset is small.

- SWA (proven to work, usually used as a last stage when training a model);
- Lookahead optimizer (kind of new, not thoroughly tested);
- Multi-Sample Dropout (seems like a cheap ensemble, should work for classification);

Applicability will vary with your task.
Plain vanilla classification can use all of these, s2s networks probably only partially.

#data_science
#deep_learning
ML without train / val split

Yeah, I am not crazy. But probably this applies only to NLP.
Sometimes you just need your pipeline to be flexible enough to work with any possible "in the wild" data.

A cool and weird trick - if you can make your dataset so large that your model just MUST generalize to work on it, then you do not need a validation set.

If you sample data randomly and your data generator is good enough, each new batch is just random and can serve as validation.

#deep_learning
Now they stack ... normalization!

Tough to choose between BN / LN / IN?
Now a stacked version with attention exists!
https://github.com/switchablenorms/Switchable-Normalization

Also, their 1D implementation does not work, but you can hack their 2D (actually BxCxHxW) layer to work with 1D (actually BxCxW) data =)

#deep_learning
Support Open STT

Now you can support Open STT on our github page via opencollective!
https://github.com/snakers4/open_stt

Opencollective seemed to be the best platform supported by GitHub for now.

#dataset
2019 DS / ML digest 15

Link

Highlights of the week(s):

- Facebook's upcoming deep fake detection challenge;
- Lyft competion on Kaggle;
- Waymo open-sources its data;
- Cool ways to deal with imbalanced data and noisy data;

#digest
#deep_learning
Forwarded from yara
Jetsons are... not cool

The case
For some of you who might think jetsons are cool... This is a pure rant, so be prepared or skip the post altogether.
Well, maybe, they seemed cool until you finally tried to use them for edge-computing. I don't refer to your pet project in you garage like tracking your cat or chickens or something, I refer to real applications, like dealing with no network connection whatsoever, where any possible support work results in huge expenses. It's not comparable to sending humans into space, but mistakes are more expensive than your average case nonetheless. I would describe dealing with jetsons as just pure frustration. That is definitely the case because expectations do not meet reality. You expect a good solid product well-suited for it's purpose. What you get is 'nope, not even close'.

Installation
From the very moment of installing OS and SDK it seems like this product is just raw. The only one that is simple enough is Nano , but we did not try it in production, so not much info to share. TX2 and Xavier are just pain in the ass though. 5 tries it took me to install everything, and then halfway through it turned out we needed a sixth one. I still wonder how you deal with updates. Not to mention that you need a dev account and host ubuntu machine (well, this one is tolerable) to install everything. After I went through registration, I didn't get the email for verification, and they blocked me saying check your email for unblocking instructions. They blocked me, because I did not verify my email and tried logging in too many times. Well, I got my email for verification in a couple of hours, but never got one with unblocking instructions. So I don't have a dev account) Luckily, my colleague had one.

Production behavior
So far so good, I never went back to dealing with these machines, but our engineers did) To save your time: they still encounter surprises. TX2 was rejected as Xavier has less issues, but still a pain in the ass too. Even when everything works on a test stand, nothing works on site. Common troubles are related to power supply and autostart. There are also troubles with finding good alternatives for common libraries and frameworks (or trying to fix and tweak existing ones) that do not have a version for jetsons, sometimes because of their architecture.

Alternatives?
Why did we try jetson? Because industrial pc with 1060 is $5k-$8k and some good 10 weeks to ship to Russia. In a limited time window we had, we decided to try jetson's dev kits, they seemed like a possible alternative. But industrial version turned out to cost $5k and same good 10 weeks to ship. Blegh.

Is it hopeless?
I hope they'll make jetsons a really good product, it just takes time. And for now jetsons are definitely not a good product. Having qualified engineers to deal with this box will ease some pain I guess (not for engineers though), but that's just ridiculous.
Why a system from video will not work IRL?

(though such coverage of ML is much better than what usually happens =) )

- Angles / sizes / frame composition not representative of real CCTV footage;
- HNM done manually via phone camera, but not via CCTV;
- 30k sample size seems ok, but probably for 99.5% precision and high recall will require some actual testing in front of CCTV;

And worst of all ... should any such system (even perfect) be adopted, it will go off AFTER the weapon is taken out. There is nothing wrong with this. But the public / stakeholders will inevitably blame the developers for not doing magic.

Mixed system (radio / sound / radio) will ofc work better. But you should fix problems in your society, not fix the consequences.
2019 DS / ML digest 16

Link

Highlights of the week(s):

- Finally a 10x smaller Transfomer - but it starts to look like a RNN inspired model;
- Deep fake detection dataset;
- Paraphrase dataset;
- Deconstructing the convolution - in essence, you just need a shift operator + a 1x1 mix convolution. Such things are not mainstream yet;

#digest
#deep_learning