Questions tagged [multi-layer]
111 questions
1
vote
0 answers
Drawing a multi layer network
I want to draw a Multi layer network by using Python. The expected graph likes this:
I want to use Python's Multinetx to draw this network. This is my command:
import Multinetx as mx
import matplotlib.pyplot as plt
mg =…

taylor
- 457
- 1
- 5
- 17
1
vote
1 answer
Strategy to persist entity's associated objects with NHibernate
I am working on a rather larger application that tries to follow a layered architecture pattern. On DBAL I use fluently configured NHibernate. Database objects sometimes have associations like these:
public class HeaderDbo
{
public HeaderDbo()
…

Yuri Makassiouk
- 425
- 3
- 16
1
vote
1 answer
Is it possible to optimize a Tensorflow MLP with the averaged loss after n iterations instead of every iteration?
The input of my network is n sequential pixels of a NxN image (where n is small compared to N) and the output is 1 pixel.
The loss is defined as the squared difference between the ouput and the desired output.
I want to use the optimizer on the…

oldsqlwnb
- 21
- 6
1
vote
1 answer
Override webservice addresses which is onanother dll at Web.Debug.config file
I work on a multi-layer solution, a web forms application. All the WebServices are under a project called WS. There are more than a hundred of them. And I call WS from Web Forms project.
I want to use the test services under the Debug configuration…

Güray Baykan
- 23
- 5
1
vote
0 answers
How to expand partially list in expandableView Android
I know similar to this question have already answers. I have some little confusion.
I want to create 3 layered expandable view (root->parent->child). But not all of my parent groups expand. I have 2 groups out of 5 which will expand.
None of the…

Vivek
- 449
- 18
- 36
1
vote
1 answer
using the domain objects in one grails project as a dependency in other grails project
I have created one grails project that contains all the foundational domain objects. I want to create separate grails projects so it helps me to keep the functional boundaries separate , but, I have a need to use these foundational domain objects…

jay
- 182
- 1
- 1
- 7
1
vote
1 answer
Efficient and simplest way to insert template based content into generated files with Yeoman generator
Suppose I already have some files generated by a generator and want to create some sub-generators that inserts contents into these files based on some content's template.
The goal is to create a generator of a multilayer architecture composed by 3…

Faly
- 13,291
- 2
- 19
- 37
1
vote
1 answer
Making training example of multilayer perceptron
I'm trying to make several training examples to get a set of weights and bias for the particular network which correctly implements a hard threshold activation function.
Four inputs x_1, ... x_4 , where x_i is Real number, and the network must…

구마왕
- 488
- 6
- 20
1
vote
1 answer
Does Orange data mining software has multi-layer perceptron classification?
I have IRIS like data set. I want to run few (3-4) classification
techniques to see which classifier work best for my biological data.
thank you

tursunWali
- 71
- 8
1
vote
1 answer
Sort by elements in multiple layers of multi-layered tuple - Python
I have a tuple of tuples of tuples and I want to sort it first by the second element, then first, then third of the lowermost layer and iteratively do this for each tuple of the middle layer.
For example, I want to sort the following…

Gingerbeardman
- 25
- 6
1
vote
1 answer
JPA - Lazy Initialization in DAO layer
I am new to JPA and multi-tiered architecture way of coding. I am currently working on a new project were we are making an API in which DAO layer is used to communicate with database using JPQL.
Currently, I have written JPQL statements to get data…

poorna chandra
- 27
- 1
- 1
- 8
1
vote
2 answers
MLP in tensorflow for regression... not converging
Hello it is my first time working with tensorflow, i try to adapt the example here TensorFlow-Examples to use this code for regression problems with boston database. Basically, i only change the cost function ,the database, the inputs number, and…

EdwinMald
- 145
- 1
- 12
1
vote
1 answer
MLP on TensorFlow is giving the same prediction for all observations after the training
I am trying to train a sparse data with an MLP to predict a forecast. However, the forecast on the test data is giving the same value for all observations. Once I omit the activation function from each layer, the outcome starts being different.
my…

chikhawi9
- 51
- 1
- 5
1
vote
2 answers
Can an ANN (2-2-1 layers) be implemented to learn XOR using linear activation function?
If yes, how? Also what are some examples of simple applications that can be implemented by using linear activation functions.

Jack
- 41
- 2
- 6
1
vote
0 answers
change jquery malsup.cycle2 to multi layer slide show
i generally use cycle2 for slide show, but recently i saw a different plugin:
http://kreaturamedia.com/layerslider-responsive-jquery-slider-plugin/
i decided to change cycle2 to like this,
as link…

user3400838
- 55
- 3
- 10