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
4
votes
3 answers

Web-based LDAP Browser

Is anyone aware of an "web-based" application that allows developers to browse an LDAP server and view objectClasses and attributeClasses? Ideally I would love something open source that is written in either Java or .NET.
McGovernTheory
  • 6,556
  • 4
  • 41
  • 75
4
votes
1 answer

AD LDS ValidateCredentials at ContextType.ApplicationDirectory can't authenticate

I'm trying to use AD LDS for user authentication in my MVC app. I've managed to write some code that allows me to create/edit/delete users and groups, but i can't seem to authenticate them. Here is my sample code: using( var context = new…
Szymon Seliga
  • 784
  • 5
  • 23
4
votes
2 answers

epsilon parameter in Adam opitmizer

Using pyTorch and tensorflow (TF), I was wandering how the Adam optimizer is implemented for curiosity. And I do not know if I am wrong or not but it seems to me that the two implementations differ and the pyTorch one is the original one from…
Jean-Eric
  • 372
  • 2
  • 14
4
votes
1 answer

LSTM training pattern

I'm fairly new to NNs and I'm doing my own "Hello World" with LSTMs instead copying something. I have chosen a simple logic as follows: Input with 3 timesteps. First one is either 1 or 0, the other 2 are random numbers. Expected output is same as…
Manngo
  • 829
  • 7
  • 24
4
votes
2 answers

Why do I get the error "Unable to update the password" when calling AzMan?

I'm doing a authorization check from a WinForms application with the help of the AzMan authorization provider from Enterprise Library and am receiving the the following error: Unable to update the password. The value provided as the current…
Magnus Lindhe
  • 7,157
  • 5
  • 48
  • 60
3
votes
6 answers

Are most LDAP administrators creating LDIFs by hand?

Are there tools that make the job easier? If command-line only tools exist, then can anyone speculate if there is a market for a GUI tool? For example, you can create a relational database by modeling visually. Should the same notion exist for LDAP?
McGovernTheory
  • 6,556
  • 4
  • 41
  • 75
3
votes
1 answer

Adobe Adam and Eve (C++ ASL): how to bind Eve variable so to get it updated inside C++ application?

So we know how to compile it, we have seen its demos and loved it. We have seen probably only one real life opensource project based on it. So I look at the samples and see only 3 quite long C++ applications that can be ofmy intrest…
Rella
  • 65,003
  • 109
  • 363
  • 636
3
votes
1 answer

Resume training with Adam optimizer in Keras

My question is quite straightforward but I can't find a definite answer online (so far). I have saved the weights of a keras model trained with an adam optimizer after a defined number of epochs of training using: callback =…
sunnydk
  • 67
  • 9
3
votes
1 answer

Why does the learning rate increase in Adam?

I have been using the following piece of code to print the lr_t learning_rate in Adam() optimizer for my trainable_model. if(np.random.uniform()*100 < 3 and self.training): model = self.trainable_model _lr =…
Zhell
  • 95
  • 1
  • 1
  • 6
3
votes
0 answers

Using custom optimizer in Keras after loading model

I would like to use an AdamW optimizer in keras for NN training, according to: https://github.com/GLambard/AdamW_Keras I import it and the code appears to work as advertised. Unfortunately, when I load a saved checkpoint, I get an error: file…
abby yorker
  • 357
  • 4
  • 19
3
votes
3 answers

Saving Tensorflow Graph and Variables while excluding Adam Optimizer Variables

I am saving a tensor flow graph and variables using : builder = tf.saved_model.builder.SavedModelBuilder(export_dir) builder.add_meta_graph_and_variables(sess, ["nn"]) builder.save(as_text=False) I would like the smallest save file with which I…
Peter Trajmar
  • 41
  • 1
  • 3
3
votes
1 answer

How do I use ADAM to run unit tests?

I writing a web site that uses Active Directory to validate users. I don't have access to an Active Directory instance that I can edit in any way. I've heard that some people are using Active Directory Application Mode (ADAM) to create AD data to be…
jrcs3
  • 2,790
  • 1
  • 19
  • 35
3
votes
1 answer

LDAP not returning all attributes

I'm using Ldap to retrieve accounts from AD LDS: Hashtable props = new Hashtable(); props.put(Context.SECURITY_PRINCIPAL, "cn=adminuser,o=myorg,c=uk"); props.put(Context.SECURITY_CREDENTIALS, "password"); props.put(Context.INITIAL_CONTEXT_FACTORY,…
David Lavender
  • 8,021
  • 3
  • 35
  • 55
3
votes
2 answers

Can you authenticate into SSAS with AD LDS (ADAM) accounts?

I'm very new to AD LDS and experienced but not qualified with SSAS, so my apologies for my ignorances with these. We have a couple implementations where we expose SSAS via an HTTPS proxy (msmdpump.dll) and currently we have a temporary domain setup…
Jaxidian
  • 13,081
  • 8
  • 83
  • 125
3
votes
1 answer

How many concurrent connections does ADAM allow?

Is there a limit on number of concurrent connections to ADAM. Is is configurable? -- How many concurrent connections from a same user could be established? -- How many concurrent connections from different users could be established? Any…
Anand Patel
  • 6,031
  • 11
  • 48
  • 67
1
2
3
10 11