• Stars
    star
    136
  • Rank 266,152 (Top 6 %)
  • Language
    Python
  • License
    MIT License
  • Created almost 7 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Naive implementation of SENet in Keras

SENet (Keras implementation)


New information

  • We provide a trained SEResNeXt model (training data: cifar10)
    Google drive
    You can try this model in evaluate-cifar10.ipynb.

Naive implementation of SENet models in Keras.

Prerequisites

  • nvidia-docker environment

Environment constuction

  • Build a docker image (on the root directory of the repository)
    $ docker build -t [tag name] -f docker/Dockerfile .
    
  • Create a container using the image
    $ nvidia-docker run -it -v $PWD:/work [tag name]
    

Train a model

  • Train a model with cifar10 data.
    (in the container) $ pwd
    /work
    (in the container) $ python train-cifar10.py
    

Note that this script is written in an insufficient way; use data generator in consideration of expansion to general image data). The training speed is slow. On a p3.2xlarge instance, it takes about 1.5 days.

Evaluate the model

  • Launch a jupyter notebook.
    (in the container) $ bash launch_notebook.sh
    
  • Execute evaluate-cifar10.ipynb notebook.

Results

  • Accuracy plot of train/val.
     result

  • Loss plot of train/val.
     result

  • Accuracy for the test data.
    92.38%

More Repositories

1

bert-japanese

BERT with SentencePiece for Japanese text.
Jupyter Notebook
497
star
2

paper-reading

Notes about papers I read (in Japanese)
156
star
3

a-primer-on-adversarial-examples

A Primer on Adversarial Examples の検証実験のプログラム
Jupyter Notebook
28
star
4

2018-cookpad-intern-yohei-lecture

This is a repository of yohei's lecture pdf of 2018 Cookpad Summer Internship 5 DAY R&D.
28
star
5

hikifune.fm

Show notes for https://anchor.fm/yoheikikuta.
15
star
6

arxiv-pdf-downloader

A chrome extension for donwloading arXiv papers into the google drive.
JavaScript
11
star
7

sql-autoformat-action

GitHub Action for formatting SQL queries automatically.
JavaScript
10
star
8

adversarial-camera-stickers

A very limited implementation of arXiv:1904.00759
Jupyter Notebook
10
star
9

US-patent-analysis

This is a repository of the analysis of US patent.
Jupyter Notebook
8
star
10

resume

my resume
7
star
11

trademark-retrieval

This is a repository for trying trademark image retrieval.
Jupyter Notebook
4
star
12

DeepGamblers-tensorflow

TensorFlow reimplementation of https://github.com/Z-T-WANG/NIPS2019DeepGamblers
Jupyter Notebook
3
star
13

worldcup_poisson_distrib

poisson distribution fitting against world cup scores data
Jupyter Notebook
2
star
14

dotfiles

My personal dotfiles.
Shell
1
star
15

text2img_webapp

A web application of a text2img model.
Python
1
star
16

c-exercise

This is a repository of C language exercises for my own sake.
C
1
star
17

ArxivQuickCheckerAndSaver

Kotlin
1
star
18

FingerBoardCheck

This is an Android app to check music scales on a finger board.
Kotlin
1
star