Questions tagged [multi-layer]
111 questions
0
votes
0 answers
Raphael getElementByPoint gives null (jsfiddle)
I have a multilayer canvas
My html:
javascript
raphael
multi-layer

fabio
- 1,210
- 2
- 26
- 55
0
votes
1 answer
Multi layer repository pattern code first relationship on .net core
Product and Category table have a one to many relation. I want to get category name from product but getting some error.
my code is working on creating new dabase first project but not working on asp.net core project.
public class Category :…

FDemirci
- 1
- 3
0
votes
2 answers
Can't register Mediatr automatically trough structuremap IoC
I have a web application with multilayer architecture and the classes of handlers and queries in the separate layer from a structuremap configuration. I tried to register all handlers and queries dynamically but I couldn't.When I try to run the…

Pavel Kononenko
- 318
- 3
- 15
0
votes
0 answers
How to use (learning data preparations) multilayered perseptron for anomaly detection?
I have a task to use machine learning for anomaly detection.
I have data as sales count info like that:
{ 5/*bread*/, 10/*milk*/, 2/*potato*/, .../*other products*/ },
{ 6, 9, 3, ... }, { 5, 12, 1, ... },
{ 10/*bread sales count is anomaly high*/,…

Kosmo零
- 4,001
- 9
- 45
- 88
0
votes
1 answer
neural network with sigmoid
I'm trying to implement a neural network with sigmoid function
But the following code doesnot work
This is the training part of neural network.
It doesnot update the weights properly
What is wrong in this code?
clc; clear all; close all;
% load…

Hüseyin Kömürcü
- 1
- 3
0
votes
1 answer
assembly reference in multi layer C# project
My multi layer project has Datalayer, services, panel. dataLayer referenced to services, and services referenced to panel. i have an interface in datalayer, some thing like
public interface IJournalEntity
{
...
}
my services has a class that…

Mahyar
- 796
- 4
- 16
- 34
0
votes
1 answer
Custom IIdentity - where does it belong in a multi-layer application?
Given a 3-layer architecture:
Domain Logic Layer
Data Access Layer
User Interface Layer (ASP.NET MVC web app)
What is the correct location for placing the logic related to constructing a custom user identity, adding custom Claims, and signing it…

Jiveman
- 1,022
- 1
- 13
- 30
0
votes
0 answers
Resolving XOR function using MLP network with matlab
I want to write my own perceptron network with matlab. I tried to run this code
input = [0 0; 0 1; 1 0; 1 1];
bias = [1 1 1];
coeff = 0.7;
iterations = 10000;
rand('state',sum(100*clock));
weights = -1 +2.*rand(3,3);
for i = 1:iterations
out =…

neir45
- 33
- 2
- 7
0
votes
3 answers
Can I Use 3-tiers architecture and "MVC" together in Android?
It's my first real android application and i want to begin it using good design patterns because it will be a little big ,so i can manage my code easily .
Can I User 3-tiers architecture and "MVC" together in Android ?
I used it in ".net" and it…

Asmaa Rashad
- 593
- 5
- 28
0
votes
1 answer
Glimpse.Log4Net multi layer
i don't know how i can get log4net logs into glimpse in others projects of my solution.
Ex:
Solution
Project1 (Business)
Project2 (DAL)
project...
ProjectWeb (glimpse & glimpse.log4net are installed here)
only logs in project 3 are…

Vincent Ducroquet
- 864
- 4
- 14
- 24
0
votes
2 answers
High error rate in multi-layer feedforward neurolab network
Why is my network showing me a high error?
I need to follow these rules -
multi-layer feedforward (2 inputs, 1 output);
the first input has 262144 values (from 0 to 256) and
the second 262144 (from 0 to 1024).
I'm using only one hidden layer. My…

hector
- 1
- 2
0
votes
1 answer
Multi-layer perceptron: error reduction
I'm studying multilayer perceptrons and write simple net for classification points in 2D-space. Net trains by back-propagation algorithm with momentum.
Unfortunately, even while local error is going to zero, the global error is still very high and I…

Ilja Kosynkin
- 107
- 1
- 14
0
votes
1 answer
Check which Kinetic.Layer is on top
I have one stage and multiple layers which are superposed. I refer to each layer with a button. I must allow the user to draw on those multiple layers whenever he clicks on one button, and swap between them. How can I check which layer is on top of…

Sahar Ch.
- 489
- 1
- 8
- 28
0
votes
1 answer
Embedding database operations in our framework
We started writing a Java Framework for our company. But we don't have enough experience about Java. We decided to use JPA framework for database CRUD operations.
What do you suggest about that:
about defining persistence.xml. We search creating…

Müslüm ÖZTÜRK
- 961
- 1
- 11
- 30
0
votes
2 answers
How to access controls of Multilayer Panels in vb.net
I want to access all of the controls in my form with this code:
For each pc in Myform.control
do somthing
My Problem is that I have multilayer panels in myform.For example "Myform" contains (textbox1,textbox 2,combobox1,panle1,panel2).
Panel1…

S MK
- 13
- 4