sudo apt-get install python3-pip
sudo pip3 install virtualenv
| const listeners = (function listAllEventListeners() { | |
| let elements = []; | |
| const allElements = document.querySelectorAll('*'); | |
| const types = []; | |
| for (let ev in window) { | |
| if (/^on/.test(ev)) types[types.length] = ev; | |
| } | |
| for (let i = 0; i < allElements.length; i++) { | |
| const currentElement = allElements[i]; |
| { | |
| "categories": [{ | |
| "name": "action", | |
| "key": "action", | |
| "icons": [{ | |
| "id": "ic_3d_rotation", | |
| "name": "3d rotation", | |
| "group_id": "action", | |
| "keywords": ["action, 3d, rotation"], | |
| "ligature": "3d_rotation", |
| <div class="primary-nav"> | |
| <button href="#" class="hamburger open-panel nav-toggle"> | |
| <span class="screen-reader-text">Menu</span> | |
| </button> | |
| <nav role="navigation" class="menu"> | |
| <a href="#" class="logotype">LOGO<span>TYPE</span></a> |
| package yourpackagename; | |
| //include CharRNNUtils.java =>https://gist.github.com/Jeraldy/673f461f99b901e73e9448538e9cb94d | |
| //include np.java =>https://gist.github.com/Jeraldy/7d4262db0536d27906b1e397662512bc | |
| import java.nio.charset.Charset; | |
| import java.util.ArrayList; | |
| import java.util.HashMap; | |
| import java.util.Map; |
| package yourpackagename; | |
| import java.io.IOException; | |
| import java.nio.charset.Charset; | |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; |
| from LatentFactorModel import LatentFactorModel | |
| from BaselineRecommendations import BaselineRecommendations | |
| from DataPreprocessing import DataPreprocessing | |
| from CollaborativeFiltering import CollaborativeFiltering | |
| if __name__ == '__main__': | |
| print "Welcome to the Anime Recommender System." | |
| #***************Data Preprocessing*************** |
| """ | |
| Jeraldy Deus | deusjeraldy@gmail.com | |
| Implementing an Artificial Neural Network in numpy | |
| BSD License | |
| """ | |
| import numpy as np | |
| X = np.array([ | |
| [0,0], | |
| [0,1], |
| import java.util.Arrays; | |
| import java.util.Random; | |
| /** | |
| * | |
| * @author Deus Jeraldy | |
| * @Email: deusjeraldy@gmail.com | |
| */ | |
| public class np { |
| /** | |
| * | |
| * @author Deus Jeraldy | |
| * @Email: deusjeraldy@gmail.com | |
| * BSD License | |
| */ | |
| // np.java -> https://gist.github.com/Jeraldy/7d4262db0536d27906b1e397662512bc | |
| import java.util.Arrays; |