Giter VIP home page Giter VIP logo

my.pytorch's Introduction

my.pytorch

My codebase to train and test various networks

Mnist

  • Resnet
  • Mnist CNN
  • FC

Appendix

Leaderboard

Provide leaderboard with top1 config and model symlink

#Rank : Data                          ,   Test Acc   Test Loss   Train Acc  Train Loss
   1  : ../Mar09-2054/final.pth       ,   0.993700,   0.025870,   0.999500,   0.001450
   2  : ../Mar09-2025/final.pth       ,   0.993300,   0.024709,   0.999800,   0.000804
   3  : ../Mar09-1630/final.pth       ,   0.993200,   0.023206,   1.000000,   0.001310
   ...

Includable YAML

# configs/mnist_cnn.yaml

# MNIST dataset
DATASET: !include dataset/mnist.yaml
MODEL: !include model/mnist_base.yaml

TRAIN:
  EPOCH: 50
  BATCH_SIZE: 512
  OPTIMIZER:
    PARAM:
      lr: 0.05
      momentum: 0.9
      weight_decay: 0.0001
  LR_SCHEDULER: !include lr_scheduler/sgdr.yaml

my.pytorch's People

Contributors

jihoonl avatar

Watchers

 avatar  avatar

my.pytorch's Issues

Re-enable back the Non-existent config key check in attrdict


-        if k not in b:
-            raise KeyError('Non-existent config key: {}'.format(full_key))
+        #TODO(jihoonl): This is good sanity check. Please re-enable back
+        #if k not in b:
+        #    raise KeyError('Non-existent config key: {}'.format(full_key))

         v = _decode_cfg_value(v_)
-        v = _check_and_coerce_cfg_value_type(v, b[k], k,
-                                             full_key)  # TODO(jihoonl): WTF
+        #v = _check_and_coerce_cfg_value_type(v, b[k], k,
+        #                                     full_key)  # TODO(jihoonl): WTF

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.