Code Monkey home page Code Monkey logo

segmentation_3d_deeplearning's People

Contributors

sanches-pedro avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

segmentation_3d_deeplearning's Issues

Here is an error about 'inception_deep '

	def inception_deep(self,deph,X):
		Y1 = Conv3D(deph, 1, activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(X)
		Y1 = self.drop(Y1)

		Y1 = Conv3D(deph, (1,1,7), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y1)
		Y1 = Conv3D(deph, (1,7,1), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y1)
		Y1 = Conv3D(deph, (7,1,1), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y1)

		Y2 = Conv3D(deph, 1, activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(X)
		Y2 = self.drop(Y2)

		Y2 = Conv3D(deph, (1,1,7), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y2)
		Y3 = Conv3D(deph, (1,7,1), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y2)
		Y4 = Conv3D(deph, (7,1,1), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y2)
		
		Y5 = Conv3D(deph, 1, activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(X)
		Y5 = self.drop(Y5)

		Y5 = Conv3D(deph, 5, activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y5)
		
		Y = Concatenate()([Y1,Y2,Y3,Y4,Y5])
		
		return Y

Y4 and Y3 is not the output we expect.

fix:

	def inception_deep(self,deph,X):
		Y1 = Conv3D(deph, 1, activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(X)
		Y1 = self.drop(Y1)

		Y1 = Conv3D(deph, (1,1,7), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y1)
		Y1 = Conv3D(deph, (1,7,1), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y1)
		Y1 = Conv3D(deph, (7,1,1), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y1)

		Y2 = Conv3D(deph, 1, activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(X)
		Y2 = self.drop(Y2)

		Y2_output = Conv3D(deph, (1,1,7), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y2)
		Y3 = Conv3D(deph, (1,7,1), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y2)
		Y4 = Conv3D(deph, (7,1,1), activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y2)
		
		Y5 = Conv3D(deph, 1, activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(X)
		Y5 = self.drop(Y5)

		Y5 = Conv3D(deph, 5, activation = 'relu', padding = 'same', kernel_initializer = 'he_normal',use_bias=False)(Y5)
		
		Y = Concatenate()([Y1,Y2_output,Y3,Y4,Y5])
		
		return Y

Dataset used in the project sharing

Hi, thanks for your sharing with your code. I'm doing the same research as your project.But I have not got the dataset to train my model. I'll appreciate it if you can share your dataset used in the project with me.
Thank you!

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.