- Step 1: Download and install StarUML Version 6 from main website https://staruml.io
- Step 2: Download
app.asarfile from https://drive.google.com/drive/folders/1gbhjOEYH1NPZNB_uMDDNr34sMsgGw8kf?usp=sharing - Step 3: Copy
app.asarfile download in step 2 (Overrideapp.asarfile)- Window:
C:\Program Files\StarUML\resources - MacOS:
/Applications/StarUML.app/Contents/Resources/ - Linux:
/opt/StartUML/resources
- Window:
- Step 4: Open StarUML app to use
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
| """ | |
| Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
| BSD License | |
| """ | |
| import numpy as np | |
| # data I/O | |
| data = open('input.txt', 'r').read() # should be simple plain text file | |
| chars = list(set(data)) | |
| data_size, vocab_size = len(data), len(chars) |