Skip to content

Instantly share code, notes, and snippets.

View kojix2's full-sized avatar
🔬
🧬 🖥️ ♋

kojix2

🔬
🧬 🖥️ ♋
View GitHub Profile
FROM tensorflow/tensorflow:1.15.2-py3
LABEL maintainer="kojix2 <[email protected]>"
RUN set -x && \
apt update -y && \
apt install -y wget unzip libsm6 libxrender1 libxext-dev && \
pip3 install --upgrade pip && \
pip3 install scikit-learn && \
pip3 install matplotlib && \
pip3 install opencv-python
RUN wget https://github.com/lindawangg/COVID-Net/archive/master.zip
@kojix2
kojix2 / daru.ipynb
Last active April 14, 2019 15:20
daru2
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kojix2
kojix2 / Daru.ipynb
Last active April 14, 2019 11:10
Daru.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
require 'pycall'
require 'pycall/import'
include PyCall::Import
require 'matplotlib/iruby'
Matplotlib::IRuby.activate
pyimport :pandas, as: :pd
pyimport :seaborn, as: :sns
require 'pycall'
require 'pycall/import'
include PyCall::Import
require 'matplotlib/iruby'
Matplotlib::IRuby.activate
pyimport :pandas, as: :pd
pyimport :seaborn, as: :sns
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kojix2
kojix2 / Usage of DataFrame.ipynb
Created February 28, 2019 08:34
Usage of DataFrame.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kojix2
kojix2 / ruby.ipynb
Created February 1, 2019 10:14
ruby.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
require 'benchmark'
require 'matrix'
require 'numo/narray'
require 'cumo'
SIZE = 2000
NUM = 1000
Xumo = [Numo, Cumo]
Types = %i[UInt8 Int32 SFloat]