Skip to content

Instantly share code, notes, and snippets.

View mathias3's full-sized avatar

mathias3

  • lisbon / warsaw
View GitHub Profile

Covid-19, twoja społeczność i ty - perspektywa nauki o danych Napisane: 09 marca 2020 r. Jeremy Howard i Rachel Thomas

Jesteśmy naukowcami od danych - to znaczy, naszym zadaniem jest zrozumienie, jak analizować i interpretować dane. Kiedy analizujemy dane dotyczące covid-19, jesteśmy bardzo zaniepokojeni. Najbardziej narażone na ryzyko są najbardziej wrażliwe grupy społeczne, osoby starsze i biedne, ale kontrolowanie rozprzestrzeniania się i wpływu choroby wymaga od nas wszystkich zmiany zachowania. Umyj dokładnie i regularnie ręce, unikaj grup i tłumów, odwołaj zdarzenia i nie dotykaj twarzy. W tym wpisie wyjaśniamy, dlaczego jesteśmy zaniepokojeni, i Ty też powinieneś być. Aby uzyskać doskonałe podsumowanie kluczowych informacji, które musisz znać, przeczytaj Corona in Brief by Ethan Alley (prezes organizacji non-profit, która opracowuje technologie zmniejszające ryzyko pandemii).

Tłumaczenia:

Każdy może przetłumaczyć ten artykuł, aby pomóc swoim lokalnym społecznościom zrozumieć te kwestie. Prosimy

@mathias3
mathias3 / autoencoder.py
Created February 15, 2018 13:12 — forked from gabrieleangeletti/autoencoder.py
Denoising Autoencoder implementation using TensorFlow.
import tensorflow as tf
import numpy as np
import os
import zconfig
import utils
class DenoisingAutoencoder(object):
""" Implementation of Denoising Autoencoders using TensorFlow.
@mathias3
mathias3 / minestation.sh
Created January 11, 2018 16:16 — forked from Jacke/minestation.sh
Miner station
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install gcc g++ build-essential libssl-dev automake linux-headers-$(uname -r) git gawk libcurl4-openssl-dev libjansson-dev xorg libc++-dev libgmp-dev python-dev
# wait
wget http://us.download.nvidia.com/XFree86/Linux-x86_64/387.34/NVIDIA-Linux-x86_64-387.34.run
sudo chmod +x NVIDIA-Linux-x86_64-387.34.run
sudo ./NVIDIA-Linux-x86_64-387.34.run --no-install-compat32-libs
KEYBINDINGS
byobu keybindings can be user defined in /usr/share/byobu/keybindings/ (or within .screenrc if byobu-export was used). The common key bindings
are:
F2 - Create a new window
F3 - Move to previous window
F4 - Move to next window
@mathias3
mathias3 / ubuntu16_tensorflow_cuda8.sh
Created October 2, 2017 15:20 — forked from ksopyla/ubuntu16_tensorflow_cuda8.sh
How to set up tensorflow with CUDA 8 cuDNN 5.1 in virtualenv with Python 3.5 on Ubuntu 16.04 http://ksopyla.com/2017/02/tensorflow-gpu-virtualenv-python3/
# This is shorthened version of blog post
# http://ksopyla.com/2017/02/tensorflow-gpu-virtualenv-python3/
# update packages
sudo apt-get update
sudo apt-get upgrade
#Add the ppa repo for NVIDIA graphics driver
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
@mathias3
mathias3 / keras_attention_wrapper.py
Created April 1, 2017 21:51 — forked from wassname/keras_attention_wrapper.py
A keras attention layer that wraps RNN layers.
"""
A keras attention layer that wraps RNN layers.
Based on tensorflows [attention_decoder](https://github.com/tensorflow/tensorflow/blob/c8a45a8e236776bed1d14fd71f3b6755bd63cc58/tensorflow/python/ops/seq2seq.py#L506)
and [Grammar as a Foreign Language](https://arxiv.org/abs/1412.7449).
date: 20161101
author: wassname
url: https://gist.github.com/wassname/5292f95000e409e239b9dc973295327a
"""
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.