Skip to content

Instantly share code, notes, and snippets.

View ahmetozlu's full-sized avatar
💭
I may be slow to respond.

Ozlu ahmetozlu

💭
I may be slow to respond.
View GitHub Profile
# imports
from keras.models import Sequential
from keras.layers import Dense
from keras.layers import Dropout
from sklearn.metrics import r2_score
import matplotlib.pyplot as plt
import numpy
from keras.optimizers import Adam
import keras
from matplotlib import pyplot
@ahmetozlu
ahmetozlu / SPPM
Last active November 22, 2017 21:22
Smartphone Power Monitor Arduino Software
//----------------------------------------------
//--- Author : Ahmet Ozlu
//--- Mail : [email protected]
//--- Date : 26th October 2017
//----------------------------------------------
/*declaration of variables*/
int sensorValue;
int sensorValue2;
@ahmetozlu
ahmetozlu / create_csv.py
Created September 30, 2017 16:41
Automatically creates you a CSV file
#----------------------------------------------
#--- Author : Ahmet Ozlu
#--- Mail : [email protected]
#--- Date : 21st September 2017
#----------------------------------------------
import sys
import os.path
import csv
@ahmetozlu
ahmetozlu / face_recognizer.py
Last active June 11, 2023 14:03
Detect, Recognize, Crop Faces from Video and Save Them as Images
#----------------------------------------------
#--- Author : Ahmet Ozlu
#--- Mail : [email protected]
#--- Date : 21st September 2017
#----------------------------------------------
import face_recognition
import cv2
import os
import create_csv
@ahmetozlu
ahmetozlu / singly_linked_list_challenge
Created September 9, 2017 19:28
C Program to Implement Advanced Singly Linked List using Dynamic Memory Allocation
/*
----------------------------------------------
--- Author : Ahmet Özlü
--- Mail : [email protected]
--- Date : 1st September 2017
----------------------------------------------
*/
#include <stdio.h>
#include <malloc.h>