Author: tommaso
Date: Fri Nov 25 22:11:26 2011
New Revision: 1206359
URL: http://svn.apache.org/viewvc?rev=1206359&view=rev
Log:
added AL headers, and removed @author @version in javadoc
Modified:
labs/yay/trunk/core/src/main/java/org/apache/yay/bio/ActivationFunction.java
labs/yay/trunk/core/src/main/java/org/apache/yay/bio/NeuralNetwork.java
labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Neuron.java
labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Signal.java
labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Synapse.java
labs/yay/trunk/core/src/test/java/org/apache/yay/ForwardPropagationTest.java
Modified:
labs/yay/trunk/core/src/main/java/org/apache/yay/bio/ActivationFunction.java
URL:
http://svn.apache.org/viewvc/labs/yay/trunk/core/src/main/java/org/apache/yay/bio/ActivationFunction.java?rev=1206359&r1=1206358&r2=1206359&view=diff
==============================================================================
---
labs/yay/trunk/core/src/main/java/org/apache/yay/bio/ActivationFunction.java
(original)
+++
labs/yay/trunk/core/src/main/java/org/apache/yay/bio/ActivationFunction.java
Fri Nov 25 22:11:26 2011
@@ -1,7 +1,24 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
package org.apache.yay.bio;
/**
- * @author tommaso
*/
public interface ActivationFunction {
Modified:
labs/yay/trunk/core/src/main/java/org/apache/yay/bio/NeuralNetwork.java
URL:
http://svn.apache.org/viewvc/labs/yay/trunk/core/src/main/java/org/apache/yay/bio/NeuralNetwork.java?rev=1206359&r1=1206358&r2=1206359&view=diff
==============================================================================
--- labs/yay/trunk/core/src/main/java/org/apache/yay/bio/NeuralNetwork.java
(original)
+++ labs/yay/trunk/core/src/main/java/org/apache/yay/bio/NeuralNetwork.java Fri
Nov 25 22:11:26 2011
@@ -1,7 +1,24 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
package org.apache.yay.bio;
/**
- * @author tommaso
*/
public interface NeuralNetwork {
Modified: labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Neuron.java
URL:
http://svn.apache.org/viewvc/labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Neuron.java?rev=1206359&r1=1206358&r2=1206359&view=diff
==============================================================================
--- labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Neuron.java (original)
+++ labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Neuron.java Fri Nov 25
22:11:26 2011
@@ -1,12 +1,27 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
package org.apache.yay.bio;
import java.util.Collection;
/**
* elaboration node/unit; sends a signal on the basis of the signals received
and its activation threshold
- *
- * @author tommaso
- * @version $Id$
*/
public abstract class Neuron {
Modified: labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Signal.java
URL:
http://svn.apache.org/viewvc/labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Signal.java?rev=1206359&r1=1206358&r2=1206359&view=diff
==============================================================================
--- labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Signal.java (original)
+++ labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Signal.java Fri Nov 25
22:11:26 2011
@@ -1,9 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
package org.apache.yay.bio;
/**
* a signal to be sent from one neuron to another via a synapse
- *
- * @author tommaso
*/
public class Signal {
private Object itemToTransmit;
Modified: labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Synapse.java
URL:
http://svn.apache.org/viewvc/labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Synapse.java?rev=1206359&r1=1206358&r2=1206359&view=diff
==============================================================================
--- labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Synapse.java (original)
+++ labs/yay/trunk/core/src/main/java/org/apache/yay/bio/Synapse.java Fri Nov
25 22:11:26 2011
@@ -1,10 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
package org.apache.yay.bio;
/**
* connects neurons weighting the signals which traverse the synapse itself
- *
- * @author tommaso
- * @version $Id$
*/
public abstract class Synapse {
Modified:
labs/yay/trunk/core/src/test/java/org/apache/yay/ForwardPropagationTest.java
URL:
http://svn.apache.org/viewvc/labs/yay/trunk/core/src/test/java/org/apache/yay/ForwardPropagationTest.java?rev=1206359&r1=1206358&r2=1206359&view=diff
==============================================================================
---
labs/yay/trunk/core/src/test/java/org/apache/yay/ForwardPropagationTest.java
(original)
+++
labs/yay/trunk/core/src/test/java/org/apache/yay/ForwardPropagationTest.java
Fri Nov 25 22:11:26 2011
@@ -1,3 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
package org.apache.yay;
import org.junit.Test;
@@ -5,7 +23,6 @@ import org.junit.Test;
import static org.junit.Assert.fail;
/**
- * @author tommaso
*/
public class ForwardPropagationTest {
@Test
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]