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
// | |
// ViewController.swift | |
// face-detection | |
// | |
// Created by on 22/10/2018. | |
// Copyright © 2018 . All rights reserved. | |
// | |
import UIKit | |
import Vision |
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 warnings | |
warnings.simplefilter(action='ignore', category=FutureWarning) | |
import sys | |
import tensorflow as tf | |
import keras | |
from keras.models import Sequential | |
from keras.layers import Dense, Dropout, Flatten | |
from keras.layers.convolutional import Conv2D, MaxPooling2D | |
import numpy as np |
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
## korean article : http://ddanggle.github.io/11lines | |
## original article : http://iamtrask.github.io/2015/07/12/basic-python-network/ | |
## Title : "A Neural Network in 11 lines of Python (Part 1)" | |
# 변수, 변수에 관한 설명 | |
# X 각각의 행들이 트레이닝 샘플인 입력 데이터 행 | |
# y 각각의 행들이 트레이닝 샘플인 결과 데이터 행 | |
# l0 네트워크의 첫 번째 층. 입력 데이터값들을 특징화한다. (l 은 layer 의 l, syn은 synapse 의 syn) | |
# l1 네트워크의 두 번째 층. 보통 히든 레이어으로 알려져 있다. | |
# weight_vector weight들의 첫번째 레이어인 시냅스 0로 l0과 l1를 연결시킨다. |
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
#%% making dummy data ---------------------------------------- | |
from random import * | |
import math | |
import matplotlib.pyplot as plt | |
import numpy as np | |
def get_biased_point_randomly(): | |
x = randint(1, 100) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// | |
// ViewController.swift | |
// animation | |
// | |
// Created by Fredric Cliver on 29/01/2019. | |
// Copyright © 2019 Fredric Cliver. All rights reserved. | |
// | |
import Foundation | |
import UIKit |
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 'dart:async'; | |
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:html/parser.dart'; | |
import 'package:webview_flutter/webview_flutter.dart'; | |
import 'package:provider/provider.dart'; | |
import 'package:html/dom_parsing.dart'; |
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 'dart:async'; | |
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:html/parser.dart'; | |
import 'package:webview_flutter/webview_flutter.dart'; | |
import 'package:provider/provider.dart'; | |
import 'package:html/dom_parsing.dart'; |
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 'dart:async'; | |
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:html/parser.dart'; | |
import 'package:webview_flutter/webview_flutter.dart'; | |
import 'package:provider/provider.dart'; | |
void main() => runApp(MyApp()); | |
class UrlManager extends ChangeNotifier { |
OlderNewer