Questions tagged [adam]

Active Directory Application Mode (ADAM) is an LDAP-compliant directory service.

ADAM has a simple install and runs as a service on Windows operating systems. It can be fully customized and distributed as an application component or used as a stand-alone LDAP directory. ADAM uses the same technologies found on Active Directory Domain Controllers (including replication and delegation features) and has its own administration and customization features. It can be run as a Windows server.

ADAM can be installed, as a free distribuable, on Windows XP, 2000, 2003, and 2008 operating systems. An improved version of ADAM is included as part of Windows Server 2003 R2 and Windows Server 2008 under the name Lightweight Directory Service (LDS).

158 questions
1
vote
1 answer

Why does my learning rate decrease, even when loss is improving?

I am training my Keras model on Google Colab TPU as follows - adam = Adam(lr=0.002) model.compile(loss='mse', metrics=[PSNRLoss, SSIMLoss], optimizer=adam) checkpoint = ModelCheckpoint("model_{epoch:02d}.hdf5", monitor='loss', verbose=1,…
Nikhil Khandelwal
  • 198
  • 1
  • 2
  • 12
1
vote
1 answer

How to use Lazy Adam optimizer in tensorflow 2.0.0

This code doesnt work: it has problem with tf.contrib model.compile(optimizer=TFOptimizer(tf.contrib.opt.LazyAdamOptimizer()), loss='categorical_crossentropy') I have tried something with tensorflow_addons.optimizers.LazyAdam() but that does not…
pikachu
  • 690
  • 1
  • 6
  • 17
1
vote
1 answer

5 epoch too soon for a model to converge?

I'm trying to build a CNN model, I've about 44,000 images with 6 class, image size being 99X99. First i tried ResNet10 using SGD optimizer, i set it for 30 epochs with learning rate of 0.001 and the best model received was at 22 epoch, but accuracy…
1
vote
1 answer

Creating Active Directory of usernames for LDAP access

I am a newbie to LDAP and Active Directories. I need to build a active directory of users who are eligible to access a particular conputer. When the user enters the username and password in a web interface(created in C#) it is sent to the active…
logeeks
  • 4,849
  • 15
  • 62
  • 93
1
vote
0 answers

Does Keras Adam Optimizer and other momemtum-based optimizers retain its past update information over different fit calls?

The Adam optimizer uses a momentum-like approach to train a neural network in fewer iterations of gradient descent than vanilla gradient descent. I'm trying to figure out whether the Adam optimizer works in a Q-learning situation where you have a…
1
vote
1 answer

How does the ADAM optimizer output a specific value for v_t in keras?

I want to look at the results of each iteration of the ADAM algorithm that computes v_t, so I added the following code to the Adam class in the keras\optimizers.py file: sess = tf.Session() init = tf.global_variables_initializer() sess.run(init) I…
Wendong Zheng
  • 276
  • 2
  • 10
1
vote
1 answer

Calling initialize method of AzMan object causes FileNotFoundException

I have A WCF service that has a class that inherits System.Web.Security.RoleProvider. In this class I use Authorization Manager (AzMan) - using AzRoles.dll - for role management. Authentication is in an ADAM instance. I have been having trouble…
HitLikeAHammer
  • 2,679
  • 3
  • 37
  • 53
1
vote
1 answer

WCF and AD LDS and Basic Authentication

I'm not sure what changes are necessary in web.config on the server. I have a WCF service using basic authentication. Currently its working against Active Directory. What changes are necessary so it authenticates against AD LDS instead?
user1139416
1
vote
2 answers

Spring ldap authentication failed error codes

I'm using Spring LDAP (1.3.1) to talk to ADAM and Active Directory. When I try to authenticate someone using ldapTemplate.authenticate() I get back errors via the error callback, but it gives a very generic exception AuthenticationException and I…
Alexandru Luchian
  • 2,760
  • 3
  • 29
  • 41
1
vote
0 answers

Access AD LDS (ADAM) using ADSI (C++) and StartTLS

I need to connect to AD LDS instance using StartTLS and get the list of users from there. Unfortunately it has to be done in the legacy C++ app. I've installed test AD LDS on Windows 2008 R2 machine (running on Network Service), it looks like I've…
Sanza
  • 23
  • 4
1
vote
1 answer

AD LDS Context password Intermittently resetting

Using the DirectoryServices.AccountManagement library in C#, I am establishing a PrincipalContext, then using that context to validate users. It seems that the username with which I am establishing the context is being intermittently corrupted/reset…
Matt M
  • 11
  • 1
1
vote
2 answers

Tensorflow Adam Multigpu Gradient

I am trying to implement a network multiple gpu on tensorflow using ADAM Optimization. I am coping the code from the Cifar10_multigpu, but it looks that when the gradient calls the second tower it calls the gradient of the first and generated error…
1
vote
2 answers

How do you find out if your AD/AM instance is up and running via C#?

I saw a link to find out if AD was running, but am not too sure if the same applies to AD/AM. One caveat is that I should be able to check about any AD/AM instance (any domain) assuming I have permissions.
Sash
  • 3,525
  • 3
  • 19
  • 17
1
vote
1 answer

Performance counters in AD LDS

Are there any performance counters for an AD LDS instance? I have searched for them without success. I know that there are performance counters for AD DS, but that is not what I need.
kls
  • 591
  • 3
  • 13
1
vote
1 answer

Search Active Directory (AD LDS) by DateTime custom attribute

I have added custom attribute lastLogonTime syntax: UTC Coded Time. I extended UserPrincipal class to GET/SET that custom attribute. ... [DirectoryProperty("lastLogonTime")] public DateTime? LastLogonTime { get { object[] result =…
smr5
  • 2,593
  • 6
  • 39
  • 66