• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






天生自然

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2019年7月24日

吴裕雄--天生自然能量空间天体太空学研究学习:黑洞
摘要: 阅读全文
posted @ 2019-07-24 19:32 吴裕雄 阅读(271) 评论(0) 推荐(0)
 
吴裕雄--天生自然能量空间天体太空学研究学习:基本粒子和自然的力
摘要: 阅读全文
posted @ 2019-07-24 19:25 吴裕雄 阅读(282) 评论(0) 推荐(0)
 
吴裕雄--天生自然 PYTHON数据分析:人类发展报告——HDI, GDI,健康,全球人口数据数据分析
摘要: import pandas as pd # Data analysis import numpy as np #Data analysis import seaborn as sns # Data visualization import matplotlib.pyplot as plt # Data Visualization import matplotlib.gridspec as... 阅读全文
posted @ 2019-07-24 19:02 吴裕雄 阅读(852) 评论(1) 推荐(0)
 
吴裕雄--天生自然 python开发学习笔记:解决No module named 'mpl_toolkits.basemap'问题
摘要: 、 下载: basemap-1.1.0-cp36-cp36m-win_amd64.whl和pyproj-1.9.5.1-cp36-cp36m-win_amd64.whl这两个文件 先运行: 再运行: 阅读全文
posted @ 2019-07-24 17:44 吴裕雄 阅读(4752) 评论(0) 推荐(0)
 
吴裕雄--天生自然 python数据分析:医疗费数据分析
摘要: import numpy as np import pandas as pd import os import matplotlib.pyplot as pl import seaborn as sns import warnings warnings.filterwarnings('ignore') data = pd.read_csv('F:\\kaggleDataSet\\Medic... 阅读全文
posted @ 2019-07-24 17:10 吴裕雄 阅读(796) 评论(0) 推荐(0)
 
吴裕雄--天生自然能量空间天体太空学研究学习:不确定性原理
摘要: 阅读全文
posted @ 2019-07-24 16:26 吴裕雄 阅读(206) 评论(0) 推荐(0)
 
吴裕雄--天生自然能量空间天体太空学研究学习:膨胀的宇宙
摘要: 阅读全文
posted @ 2019-07-24 16:20 吴裕雄 阅读(226) 评论(0) 推荐(0)
 
吴裕雄--天生自然 PYTHON数据分析:糖尿病视网膜病变数据分析(完整版)
摘要: # This Python 3 environment comes with many helpful analytics libraries installed # It is defined by the kaggle/python docker image: https://github.com/kaggle/docker-python # For example, here's sev... 阅读全文
posted @ 2019-07-24 16:11 吴裕雄 阅读(1145) 评论(0) 推荐(0)
 
吴裕雄--天生自然 PYTHON数据分析:糖尿病视网膜病变数据分析(续六)
摘要: from albumentations import * import time IMG_SIZE = (224,224) '''Use case from https://www.kaggle.com/alexanderliao/image-augmentation-demo-with-albumentation/''' def albaugment(aug0, img): ret... 阅读全文
posted @ 2019-07-24 15:51 吴裕雄 阅读(607) 评论(0) 推荐(0)
 
吴裕雄--天生自然 PYTHON数据分析:糖尿病视网膜病变数据分析(续五)
摘要: from keras import layers from keras.models import Model import keras.backend as K K.clear_session() densenet = DenseNet121(weights=None,include_top=False,input_shape=(None,None,3)) GAP_layer = l... 阅读全文
posted @ 2019-07-24 15:34 吴裕雄 阅读(523) 评论(0) 推荐(0)
 
吴裕雄--天生自然 PYTHON数据分析:糖尿病视网膜病变数据分析(续四)
摘要: dpi = 80 #inch path_jpg=f"F:\\kaggleDataSet\\diabeticRetinopathy\\resized_train_cropped\\18017_left.jpeg" # too many vessels? path_png=f"F:\\kaggleDataSet\\diabeticRetinopathy\\rescaled_train_896\\1... 阅读全文
posted @ 2019-07-24 14:58 吴裕雄 阅读(421) 评论(0) 推荐(0)
 
吴裕雄--天生自然 PYTHON数据分析:糖尿病视网膜病变数据分析(续三)
摘要: %%time NUM_SAMP=10 fig = plt.figure(figsize=(25, 16)) for jj in range(5): for i, (idx, row) in enumerate(df_test.sample(NUM_SAMP,random_state=SEED+jj).iterrows()): ax = fig.add_subplot(5,... 阅读全文
posted @ 2019-07-24 14:31 吴裕雄 阅读(340) 评论(0) 推荐(0)
 
吴裕雄--天生自然 PYTHON数据分析:糖尿病视网膜病变数据分析(续二)
摘要: def circle_crop(img, sigmaX=10): """ Create circular crop around image centre """ img = cv2.imread(img) img = crop_image_from_gray(img) img = cv2.cvtColor(img, ... 阅读全文
posted @ 2019-07-24 14:14 吴裕雄 阅读(429) 评论(0) 推荐(0)
 
吴裕雄--天生自然 PYTHON数据分析:糖尿病视网膜病变数据分析(续一)
摘要: %%time fig = plt.figure(figsize=(25, 16)) for class_id in sorted(train_y.unique()): for i, (idx, row) in enumerate(df_train.loc[df_train['diagnosis'] == class_id].sample(5, random_state=SEED).ite... 阅读全文
posted @ 2019-07-24 14:03 吴裕雄 阅读(574) 评论(0) 推荐(0)
 
吴裕雄--天生自然 PYTHON数据分析:糖尿病视网膜病变数据分析
摘要: # This Python 3 environment comes with many helpful analytics libraries installed # It is defined by the kaggle/python docker image: https://github.com/kaggle/docker-python # For example, here's seve... 阅读全文
posted @ 2019-07-24 13:54 吴裕雄 阅读(757) 评论(0) 推荐(0)
 
吴裕雄--天生自然 python开发学习笔记:Git安装配置流程
摘要: 阅读全文
posted @ 2019-07-24 11:58 吴裕雄 阅读(166) 评论(0) 推荐(0)
 
吴裕雄--天生自然 R数据分析:2014年美国人时间使用调查(ATUS)饮食与健康模块文件分析
摘要: # libraries we'll need library(car) # for avplots library(tidyverse) # for general utility functions # read in our data bmi_data % filter(erbmi > 0) # remove rows where the reported BMI is les... 阅读全文
posted @ 2019-07-24 10:17 吴裕雄 阅读(403) 评论(0) 推荐(0)
 
吴裕雄--天生自然 PYTHON数据分析:所有美国股票和etf的历史日价格和成交量分析
摘要: # This Python 3 environment comes with many helpful analytics libraries installed # It is defined by the kaggle/python docker image: https://github.com/kaggle/docker-python # For example, here's sev... 阅读全文
posted @ 2019-07-24 09:36 吴裕雄 阅读(797) 评论(0) 推荐(0)