码迷,mamicode.com
首页 >  
搜索关键字:import module    ( 78115个结果
tensorflow 1-1,结构化数据建模流程范例
1-1,结构化数据建模流程范例 一,准备数据 titanic数据集的目标是根据乘客信息预测他们在Titanic号撞击冰山沉没后能否生存。 结构化数据一般会使用Pandas中的DataFrame进行预处理。 import numpy as np import pandas as pd import m ...
分类:其他好文   时间:2021-06-13 09:38:59    阅读次数:0
VUEX
VUEX 1、安装 cnpm install vuex--save 2、导入,src下新建一个文件夹vuex,文件夹下新建一个store.js import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex); 3、state 相当于vue项目的 ...
分类:其他好文   时间:2021-06-13 09:32:07    阅读次数:0
java--集合--ArrayList源码分析
ArrayList注意事项(可以放入null,且可以多个null) package com.model.list; import java.util.ArrayList; import java.util.List; /** * @Description:测试类 * @Author: 张紫韩 * @ ...
分类:编程语言   时间:2021-06-13 09:29:29    阅读次数:0
执行jar包
Window启动命令:java -jar D:\jeecg-boot-module-system-2.0.0.jar Linux下后台进程启动命令:nohup java -jar jeecg-boot-module-system-2.0.0.jar >catalina.out 2>&1 & 关掉项目 ...
分类:编程语言   时间:2021-06-13 09:27:48    阅读次数:0
linux安装nginx(CentOS6)
nginx下载地址 http://nginx.org/en/download.html Window启动命令: java -jar D:\jeecg-boot-module-system-2.0.0.jar Linux下后台进程启动命令: nohup java -jar jeecg-boot-mod ...
分类:系统相关   时间:2021-06-13 09:26:41    阅读次数:0
自动生成接口文档
# 1 安装 pip install coreapi # 2 在路由中配置 from rest_framework.documentation import include_docs_urls urlpatterns = [ ... path('docs/', include_docs_urls(t ...
分类:其他好文   时间:2021-06-13 09:22:11    阅读次数:0
实验六 Python库应用编程与体验
import turtle turtle.setup(800,600) turtle.pencolor('pink') for i in range(4): for i in range(2): turtle.circle(80,90) turtle.left(90) turtle.right(90 ...
分类:编程语言   时间:2021-06-13 09:20:06    阅读次数:0
实验六
from turtle import * def square(size = 50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) fo ...
分类:其他好文   时间:2021-06-13 09:19:11    阅读次数:0
安装nginx出错the HTTP rewrite module requires the PCRE library
问题描述 报错信息如下所示: ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrit ...
分类:Web程序   时间:2021-06-11 19:17:07    阅读次数:0
air 加载网页
package { import flash.display.MovieClip; import flash.html.HTMLLoader; import flash.net.URLRequest; import fl.core.UIComponent; import flash.display. ...
分类:Web程序   时间:2021-06-11 19:15:57    阅读次数:0
78115条   上一页 1 ... 23 24 25 26 27 ... 7812 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!