├── Code ├── dataset │ ├── images │ │ ├── W0001_0003.png │ │ ├── W0001_0004.png │ │ └── W0001_0007.png │ └── labels │ │ ├── W0002_0003.png │ │ ├── W0002_0004.png │ │ └── W0002_0007.png ├── my_model │ ├── saved_model.pb │ └── variables │ │ ├── variables.data-00000-of-00001 │ │ ├── variables.data-00000-of-00002 │ │ ├── variables.data-00001-of-00002 │ │ └── variables.index ├── test.py └── train.py ├── README.md └── Resources ├── 0003.png ├── 0004.png └── 0007.png /Code/dataset/images/W0001_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/dataset/images/W0001_0003.png -------------------------------------------------------------------------------- /Code/dataset/images/W0001_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/dataset/images/W0001_0004.png -------------------------------------------------------------------------------- /Code/dataset/images/W0001_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/dataset/images/W0001_0007.png -------------------------------------------------------------------------------- /Code/dataset/labels/W0002_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/dataset/labels/W0002_0003.png -------------------------------------------------------------------------------- /Code/dataset/labels/W0002_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/dataset/labels/W0002_0004.png -------------------------------------------------------------------------------- /Code/dataset/labels/W0002_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/dataset/labels/W0002_0007.png -------------------------------------------------------------------------------- /Code/my_model/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/my_model/saved_model.pb -------------------------------------------------------------------------------- /Code/my_model/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/my_model/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /Code/my_model/variables/variables.data-00000-of-00002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/my_model/variables/variables.data-00000-of-00002 -------------------------------------------------------------------------------- /Code/my_model/variables/variables.data-00001-of-00002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/my_model/variables/variables.data-00001-of-00002 -------------------------------------------------------------------------------- /Code/my_model/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/my_model/variables/variables.index -------------------------------------------------------------------------------- /Code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/test.py -------------------------------------------------------------------------------- /Code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Code/train.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/README.md -------------------------------------------------------------------------------- /Resources/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Resources/0003.png -------------------------------------------------------------------------------- /Resources/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Resources/0004.png -------------------------------------------------------------------------------- /Resources/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malakar-soham/cnn-in-welding/HEAD/Resources/0007.png --------------------------------------------------------------------------------