Skip to content

Instantly share code, notes, and snippets.

View offchan42's full-sized avatar
🐳
Deep Learning with Generative AI

Chanchana Sornsoontorn offchan42

🐳
Deep Learning with Generative AI
View GitHub Profile
@offchan42
offchan42 / OffACMTemplate.cpp
Created October 20, 2015 15:08
My ACM ICPC Template
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> ii;
typedef vector<ii> vii;
typedef vector<int> vi;
#define INF 1001001001 // 1 billion, safer than 2B for Floyd Warshall’s
#define EPS 1e-9
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
int fields[50][50] = {}; // set to zero
for (int i = 0; i < n; i++) {
int v = i+1;
@offchan42
offchan42 / TestStreamPrimeGenerator.java
Last active November 20, 2015 08:55
Prime Generator with sorted list as a cache source
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.stream.IntStream;
/**
* Created by off999555 on 20/11/2558 at 14:27.
*/
public class TestStreamPrimeGenerator {
@offchan42
offchan42 / Machine Learning Curriculum.md
Last active March 2, 2024 00:02
Machine learning resources and related artificial intelligence concepts.
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
@offchan42
offchan42 / deep_learning_ideas.md
Last active December 31, 2016 20:37
Deep Learning algorithms and strategies that I discovered and applications I want to build

Deep learning applications that I want to build

LeafNet: app that recognizes tree from photo

Motivation

I don't know lots about trees. Just looking at their leaves, I know that experts could pinpoint exactly what is the tree's name. But I couldn't do that so I want to have an application that recognizes trees from just looking at its leaf photo.

Usage

You could use this for fun, just learning about trees or use it for research. Sometimes, even if you are in a forest full of trees you don't recognize, use LeafNet. It would tell you whether or not the leaves you find are edible or poisonous.

An application for instantaneous class attendance checking.

@offchan42
offchan42 / 2016-11-18_02-27-01.png
Last active March 2, 2024 00:03
Computer network top down approach page 546 - 548 translation
2016-11-18_02-27-01.png
@offchan42
offchan42 / OpenGLPrototype.cpp
Last active December 5, 2016 22:27
OpenGL Prototype - template for good code design, less overwhelming, less headache for maintenance
#include <iostream>
#include <gl/glut.h>
using namespace std;
int W = 500; // window width
int H = 500; // window height
float time = 0; // เวลาปลอมๆสำหรับทำอนิเมชัน
float timeRate = 0.001; // timeRate นี่เป็นเรทเวลาจำลอง ปรับได้ถ้าอยากให้อนิเมชันมันช้าหรือเร็วขึ้น
// your global variables here ...
// e.g. float x = 10;