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
model_input | |
Shape | |
conv2d/kernel/Initializer/random_uniform/shape | |
conv2d/kernel/Initializer/random_uniform/min | |
conv2d/kernel/Initializer/random_uniform/max | |
conv2d/kernel/Initializer/random_uniform/RandomUniform | |
conv2d/kernel/Initializer/random_uniform/sub | |
conv2d/kernel/Initializer/random_uniform/mul | |
conv2d/kernel/Initializer/random_uniform | |
conv2d/kernel |
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
(Slide 1 Introduction) |
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
//Bound to windowOpened event of jFrame | |
public void TutorialStuff() { | |
List<String> list = new ArrayList<>(); | |
// add 5 element in ArrayList | |
list.add("Input <NP> in the input pattern box to copy the name column values"); | |
list.add("Input <#> in the input pattern box to copy the name column values"); | |
list.add("Input <##> in the input pattern box to copy the name column values"); | |
list.add("Input <###> in the input pattern box to copy the name column values"); | |
list.add("Input <#####> in the input pattern box to copy the name column values"); | |
//Use java settings properties to save state between application 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
private void simulateClipBoard() { | |
javax.swing.table.DefaultTableModel model = (javax.swing.table.DefaultTableModel) table_RenamingInputOutput.getModel(); | |
int np = model.findColumn("[Name]"); | |
if (table_RenamingInputOutput.getSelectedColumn() == np) { | |
try { | |
String data = (String) Toolkit.getDefaultToolkit() | |
.getSystemClipboard().getData(DataFlavor.stringFlavor); | |
String[] values = data.split("[\\r\\n]+"); | |
if (values.length > 1) { | |
for (int i = table_RenamingInputOutput.getSelectedRow(), j = 0; i <= table_RenamingInputOutput.getRowCount() - 1 && j <= values.length-1; i++, j++) { |
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
DataTable rs = new DataTable(); | |
using (var odConnection = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\Users\IIG\Desktop\test.xlsx;Extended Properties='Excel 12.0;HDR=YES;IMEX=1;';")) | |
{ | |
odConnection.Open(); | |
using (OleDbCommand cmd = new OleDbCommand()) | |
{ | |
cmd.Connection = odConnection; | |
cmd.CommandType = CommandType.Text; |
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
Implement these: | |
1. Book Request Form (Fund me page adds funds then triggers accepted ID with Title) | |
2. Search Method (Quick search: Late books; wanted books | |
3. Student Page | |
Helpful: | |
http://dspace.cusat.ac.in/jspui/bitstream/123456789/8218/1/library%20management%20system.pdf |
NewerOlder