This file contains 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
import matplotlib.pyplot as plt | |
fig = plt.figure(figsize= (10, 10)) | |
for i in range (0,12): | |
# required nrows=4, required ncoms=4, index_location= i+1 | |
ax = fig.add_subplot(4, 4, i+1) | |
# x_batch[i]: Image object at each iteration | |
ax.imshow(x_batch[i]) |
This file contains 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
const express = require('express'); | |
const app = express(); | |
app.use(express.json()) | |
var Connection = require('tedious').Connection; | |
var config = { | |
server: '', //update me | |
authentication: { |