Career Role/Tech field | 1. Signal & System | 2. Embedded system | 3. VLSI/IC design | 4. Robotics/AI |
---|---|---|---|---|
A. Professor(Academic Research) | A1 | A2 | A3 | A4 |
B. Industrial research(Company/national labs) | B1 | B2 | B3 | B4 |
C. Startup | C1 | C2 | C3 | C4 |
D. Manager | D1 | D2 | D3 | D4 |
A quick cheatsheet of useful snippet for Flutter
A widget is the basic type of controller in Flutter Material.
There are two type of basic Widget we can extend our classes: StatefulWidget
or StatelessWidget
.
StatefulWidget are all the widget that interally have a dynamic value that can change during usage. It can receive an input value in the constructor or reference to functions. You need to create two classes like:
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) |