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
两个视图基类 APIView ?? GenericAPIView # 导入from rest_framework.generics import GenericAPIView??类GenericView 继承了APIView,?class GenericAPIView(views.APIView): ...
分类:
其他好文 时间:
2021-07-05 17:10:35
阅读次数:
0
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
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
namespace 解析数字开头的变量JSON { class Program { static void Main(string[] args) { string strJson = "{\"1st_attempt\":\"2021-02-09 16:32:15\",\"2nd_attempt\" ...
客户端 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
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
import org.apache.spark.SparkConfimport org.apache.spark.streaming.{Seconds, StreamingContext}// 创建一个本地模式的StreamingContext, 两个工作线程, 1s的批处理间隔//Master要求 ...
分类:
其他好文 时间:
2021-07-02 16:32:11
阅读次数:
0
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
先看代码 using System; using System.Collections.Generic; using System.Threading.Tasks; namespace AsyncStream { class Program { static async Task Main(stri ...