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
@echo OFF | |
rem How to run a Python script in a given conda environment from a batch file. | |
rem It doesn't require: | |
rem - conda to be in the PATH | |
rem - cmd.exe to be initialized with conda init | |
rem Define here the path to your conda installation | |
set CONDAPATH=C:\ProgramData\Miniconda3 | |
rem Define here the name of the environment |
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
#from __future__ import absolute_import | |
from keras.preprocessing.image import ImageDataGenerator, array_to_img, img_to_array, load_img | |
from keras.callbacks import ModelCheckpoint | |
from keras.models import Sequential | |
from keras.layers import Convolution2D, MaxPooling2D | |
from keras.layers import Layer, Dense, Dropout, Activation, Flatten, Reshape, Merge, Permute | |
from keras.layers import ZeroPadding2D, UpSampling2D | |
from keras.layers.normalization import BatchNormalization | |
import sys |
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
from matplotlib import pyplot as plt | |
import cv2 | |
img = cv2.imread('/Users/mustafa/test.jpg') | |
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) | |
plt.imshow(gray) | |
plt.title('my picture') | |
plt.show() |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from flask import Flask, stream_with_context, request, Response, flash | |
from time import sleep | |
app = Flask(__name__) | |
def stream_template(template_name, **context): |
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
Years | Bird | Budgie | Bull | Cat | Cow | Deer | Dog | Ferret | Fish | Fox | Goat | Hamster | Hedgehog | Horse | Lamb | Lizard | Pigeon | Rabbit | Sheep | Snake | Squirrel | Tortoise | Unknown | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2009 | 89 | 0 | 0 | 263 | 0 | 8 | 131 | 0 | 0 | 16 | 0 | 0 | 1 | 19 | 0 | 1 | 0 | 1 | 1 | 3 | 4 | 0 | 30 | |
2010 | 99 | 0 | 1 | 297 | 2 | 9 | 122 | 0 | 2 | 17 | 0 | 3 | 0 | 15 | 1 | 1 | 0 | 2 | 0 | 0 | 5 | 0 | 35 | |
2011 | 120 | 1 | 0 | 309 | 0 | 9 | 103 | 2 | 0 | 26 | 0 | 3 | 0 | 22 | 0 | 0 | 0 | 0 | 0 | 0 | 4 | 0 | 21 | |
2012 | 112 | 0 | 0 | 305 | 3 | 7 | 100 | 1 | 0 | 14 | 0 | 0 | 0 | 27 | 1 | 0 | 0 | 0 | 1 | 0 | 4 | 0 | 20 | |
2013 | 85 | 0 | 0 | 313 | 0 | 7 | 93 | 0 | 0 | 25 | 0 | 3 | 0 | 15 | 0 | 0 | 1 | 0 | 0 | 2 | 7 | 0 | 33 | |
2014 | 110 | 0 | 0 | 298 | 1 | 5 | 90 | 0 | 0 | 22 | 1 | 1 | 0 | 11 | 0 | 0 | 1 | 3 | 0 | 0 | 2 | 0 | 37 | |
2015 | 106 | 0 | 0 | 263 | 0 | 6 | 88 | 1 | 0 | 21 | 0 | 0 | 0 | 11 | 0 | 0 | 0 | 0 | 1 | 0 | 5 | 1 | 36 | |
2016 | 120 | 0 | 0 | 297 | 1 | 14 | 107 | 0 | 0 | 29 | 0 | 4 | 0 | 12 | 0 | 0 | 0 | 2 | 1 | 1 | 3 | 0 | 13 | |
2017 | 124 | 0 | 0 | 258 | 0 | 11 | 81 | 0 | 0 | 33 | 0 | 0 | 0 | 10 | 0 | 0 | 1 | 0 | 0 | 1 | 5 | 0 | 15 |
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 socket | |
HOST = '127.0.0.1' # Endereco IP do Servidor | |
PORT = 5000 # Porta que o Servidor esta | |
tcp = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
dest = (HOST, PORT) | |
tcp.connect(dest) | |
print 'Para sair use CTRL+X\n' | |
msg = raw_input() | |
while msg <> '\x18': | |
tcp.send (msg) |
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
- Nome do projeto X | |
- Informação de um **pull request** fechado | |
- Número de linhas modificadas, removidas e adicionadas X | |
- Quantidade de arquivos alterados, removidos e adicionados X | |
- Existem testes (caminhos dos arquivos contém "test") | |
- O pull request foi aceito X |
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
#include <stdio.h> | |
#ifdef _OPENMP | |
#include <omp.h> | |
#else | |
#define omp_get_thread_num() 0 | |
#endif | |
int main(){ | |
#pragma omp parallel | |
{ |
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
//fpc 3.0.0 | |
program HelloWorld; | |
var | |
Meunome: String; | |
Idade: Integer; | |
begin | |
writeln('Informe seu Nome'); | |
read(Meunome); | |
writeln('Informe sua Idade'); | |
read(Idade); |
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
50 50 | |
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | |
0 2 1 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 | |
0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 | |
0 1 0 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 1 1 0 1 1 1 1 1 0 1 0 1 0 1 1 1 0 1 0 1 1 1 0 1 1 1 1 1 0 | |
0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 | |
0 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 0 1 0 1 0 1 0 | |
0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 0 | |
0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 1 1 0 1 1 1 1 1 0 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 0 | |
0 1 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 |
NewerOlder