분류 전체보기 1203

5 - 기본 위젯 알아보기

import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue, ), home: Test(), ); } } class Test extends StatefulWidget { @override _TestState createState() => _TestS..

4 - 상태변화 알아보기

import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: SimpleApp() ); } } class SimpleApp extends StatefulWidget { @override _SimpleAppState createState() => _SimpleAppState(); } class _SimpleAppState extends State { String box_text = "테스트 텍스트"; void _updateText() { set..

Kaggle 문제를 풀고 느낀 점

Kaggle 이라는 데이터 커뮤니티의 문제를 보다가 깨달음이 왔는데 그냥 이게 뭐 데이터를 가지고 이것저것 하고 엄청 어려운 것 같은데 자세히 보면은 별게 아닙니다. 그냥 pandas를 이용해서 데이터를 뭐 약간 수정하고 몇가지 머신러닝 알고리즘 이용해서 적용해주면 끝이네요... 뭐 정말 정확도를 높이고 이런 작업에는 더 다양한 테크닉이 필요하겠지만, 입문용으로는 이정도만 알면 되는 것 같습니다.

개발/Kaggle 2020.04.19

Restaurant Revenue Prediction

Restaurant Revenue Prediction에 대해서 아봅니다. 각 데이터가 의미하는 것은 아래와 같습니다. File descriptions train.csv - the training set. Use this dataset for training your model. test.csv - the test set. To deter manual "guess" predictions, Kaggle has supplemented the test set with additional "ignored" data. These are not counted in the scoring. sampleSubmission.csv - a sample submission file in the correct format Dat..

개발/Kaggle 2020.04.19