This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC7qJvjzeFu0b5a1fStlML5xrJavYW1a9tI7C8cf504+kDI2m7eBlhNysKOUt4KqQA+V/ZpMMCUGi9Qe3QCSYtQtxlenl/XQA0QEZqBYLTpn7KPZocNp5H2KT9gywz6GXIDQk5ZI2pu9gQ1DM1poNUqwWqjl5EXUBVFyt5aXqx/l8+3nUtN0IGEgr1SiLVQaQB94KDN/pz4f/1rNrlfc8rDEHYuX3lFBycQnQd1ckUqViVTACPp73r/OS1vVFl+Mr3NOJInhx1r5yCWIwF9ttrtXf/aEidMDIK6MJ+LLTtxh6rwKzOTTOna3+nlPR1MpN6TH2nqwELn8gFFKAJr3sqFInYuti/DLf0MVkGqzNrodyJyFo0HUnOeKc8QD+kBrMeIXKkvSZHEYhnk8J8jRgi5V+7kQSfWF8WrEX31roo8J6g+nbBTWdRnKzkgkG0FDoXumgWQufhYaSNPZXrWWT0vXWc60ysUPN6ieCKtJ9kUoGENpIVW0AO51UnxCDhnCTCefCAu07khoSIPNJDaSMXDyGnEk1Tjmm6fafgw5Oq9jVMpPXyV5wyZ2T7mVO9Yv8jnIveymxRkNMiISX2EnzMJI2BYNkoCpIWTIMrdvi/uK+U3/YVNndJh3tSLhhLerA4lY/WXLl50BWcxzReKwy42W0FmMNaISxBYKXXbZJbMNQ== Administrator@PC-20181125MCGL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Neural { | |
constructor() { | |
this.id = Math.random(); | |
this.weightS = [1]; | |
} | |
setWeightS(newWeightS) { | |
this.weightS = newWeightS; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
查查资料,看看从哪个地方 开始。 |