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
| # Arda Mavi | |
| # github.com/ardamavi | |
| import tensorflow as tf | |
| # Inputs: | |
| x = tf.placeholder(tf.float32, [None, 2]) | |
| y = tf.placeholder(tf.float32, [None, 1]) | |
| # Weight: |
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
| # Arda Mavi | |
| # https://github.com/ardamavi | |
| # FIRE: Fundus Image Registration Dataset | |
| # Add and run this program in 'FIRE' folder. | |
| # FIRE: http://www.ics.forth.gr/cvrl/fire/ | |
| import os |
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
| # Arda Mavi | |
| import keras | |
| import numpy as np | |
| from sklearn import tree | |
| from random import shuffle | |
| from keras.layers import Dense | |
| from keras.models import Sequential | |
| from sklearn.neural_network import MLPClassifier |
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
| # Arda Mavi - ardamavi.com | |
| # inpt : | |
| inpt = [8, 2, 78, 1, 23, 45, 3, 6, 9] | |
| print("Numbers =", inpt) | |
| sorted = sorted(inpt) | |
| root = inpt[0] | |
| inpt.remove(root) |
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
| // Arda Mavi - ardamavi.com | |
| #include <iostream> | |
| using namespace std; | |
| char bölge[10] = {'0','1','2','3','4','5','6','7','8','9'}; | |
| // Yapay zeka oynama sayısı : |
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
| // Arda Mavi | |
| using System; | |
| namespace javaİleDikÜçgenYapımı | |
| { | |
| class MainClass | |
| { | |
| public static void Main (string[] args) |
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
| // | |
| // main.c | |
| // javaİleDikÜçgenYapımı | |
| // | |
| // Created by Arda Mavi on 11.02.2016. | |
| // Copyright © 2016 Arda Mavi. All rights reserved. | |
| // | |
| #include <stdio.h> |
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
| // Arda Mavi | |
| public class javaİleDikÜçgenYapımı { | |
| public static void main(String[] args) { | |
| for(int a=0;a<5;a++){ | |
| // Döngünün beşkere dönmesini sağlayan döngü. | |
| // a bir tamsayı ve 0 değerine eşit. |
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
| // Arda Mavi | |
| for(int i = 0; i<=5;i++){ | |
| // i bir tamsayı ve 0 değerine eşit. | |
| // Döngü i, 5'e eşit ya da 5'den küçük olana kadar devam edecek. | |
| // i sayısı her tekrarda 1 arttırılacak. | |
| } |
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
| using System; | |
| namespace ArdaMavi | |
| { | |
| class MainClass | |
| { | |
| public static void Main (string[] args) | |
| { | |
| // Arda Mavi |