This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'pycall' | |
require 'pycall/import' | |
include PyCall::Import | |
require 'matplotlib/iruby' | |
Matplotlib::IRuby.activate | |
pyimport :pandas, as: :pd | |
pyimport :seaborn, as: :sns | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'benchmark' | |
require 'matrix' | |
require 'numo/narray' | |
require 'cumo' | |
SIZE = 2000 | |
NUM = 1000 | |
Xumo = [Numo, Cumo] | |
Types = %i[UInt8 Int32 SFloat] |