码迷,mamicode.com
首页 >  
搜索关键字:import static    ( 107948个结果
遍历文件夹
import os def traverse_dir(path): for root, dirs, files in os.walk(path): for dir in dirs: dir_path = os.path.join(root, dir) print(dir_path) traverse ...
分类:其他好文   时间:2021-07-05 17:23:58    阅读次数:0
2个视图基类,5个视图扩展类,9个视图子类,视图集,drf自动生成路由
两个视图基类 APIView ?? GenericAPIView # 导入from rest_framework.generics import GenericAPIView??类GenericView 继承了APIView,?class GenericAPIView(views.APIView): ...
分类:其他好文   时间:2021-07-05 17:10:35    阅读次数:0
机器学习sklearn(76):算法实例(三十三)回归(五)线性回归大家族(三)回归类的模型评估指标
0 简介 1 是否预测了正确的数值 from sklearn.metrics import mean_squared_error as MSE MSE(yhat,Ytest) y.max() y.min() cross_val_score(reg,X,y,cv=10,scoring="mean_sq ...
分类:编程语言   时间:2021-07-05 17:07:25    阅读次数:0
http.js 的封装
import axios from 'axios'; import iView from 'iview'; const baseApiObj = { production: 'https://imzt.bndxqc.com/api', experience: 'https://imztty.bndx ...
分类:Web程序   时间:2021-07-05 16:58:57    阅读次数:0
C# Json 解析,针对数字开头变量Json字符串转模型(Model)
namespace 解析数字开头的变量JSON { class Program { static void Main(string[] args) { string strJson = "{\"1st_attempt\":\"2021-02-09 16:32:15\",\"2nd_attempt\" ...
分类:Windows程序   时间:2021-07-05 16:41:12    阅读次数:0
JavaSE:NIO编程实例
客户端 1 public static void main(String[] args) throws IOException { 2 3 4 5 // 创建客户端 6 7 SocketChannel sc = SocketChannel.open(); 8 9 10 11 // 指定要连接的服务器 ...
分类:编程语言   时间:2021-07-02 16:40:13    阅读次数:0
Spark分析sogou日志, RDD
import com.hankcs.hanlp.HanLPimport org.apache.spark.rdd.RDDimport org.apache.spark.{SparkConf, SparkContext}import scala.collection.immutable.StringO ...
分类:其他好文   时间:2021-07-02 16:33:14    阅读次数:0
sparkStreaming
import org.apache.spark.SparkConfimport org.apache.spark.streaming.{Seconds, StreamingContext}// 创建一个本地模式的StreamingContext, 两个工作线程, 1s的批处理间隔//Master要求 ...
分类:其他好文   时间:2021-07-02 16:32:11    阅读次数:0
Map转二维数组,Map转数组
Map转二维数组,Map转数组 ©Copyright 蕃薯耀 2021-07-02 https://www.cnblogs.com/fanshuyao/ import java.util.ArrayList; import java.util.Collection; import java.util ...
分类:编程语言   时间:2021-07-02 16:15:46    阅读次数:0
C# Async Streams
先看代码 using System; using System.Collections.Generic; using System.Threading.Tasks; namespace AsyncStream { class Program { static async Task Main(stri ...
分类:Windows程序   时间:2021-07-02 15:58:46    阅读次数:0
107948条   上一页 1 ... 5 6 7 8 9 ... 10795 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!