데이터셋 상세
미국
Efficient Matlab Programs
Matlab has a reputation for running slowly. Here are some pointers on how to speed computations, to an often unexpected degree. Subjects currently covered: Matrix Coding Implicit Multithreading on a Multicore Machine Sparse Matrices Sub-Block Computation to Avoid Memory Overflow -------------------------------------------------------------------------------------------------------- Matrix Coding - 1 Matlab documentation notes that efficient computation depends on using the matrix facilities, and that mathematically identical algorithms can have very different runtimes, but they are a bit coy about just what these differences are. A simple but telling example: The following is the core of the GD-CLS algorithm of Berry et.al., copied from fig. 1 of Shahnaz et.al, 2006, "Document clustering using nonnegative matrix factorization': for jj = 1:maxiter A = W'*W + lambda*eye(k); for ii = 1:n b = W'*V(:,ii); H(:,ii) = A \ b; end H = H .* (H>0); W = W .* (V*H') ./ (W*(H*H') + 1e-9); end Replacing the columwise update of H with a matrix update gives: for jj = 1:maxiter A = W'*W + lambda*eye(k); B = W'*V; H = A \ B; H = H .* (H>0); W = W .* (V*H') ./ (W*(H*H') + 1e-9); end These were tested on an 8049 x 8660 sparse matrix bag of words V (.0083 non-zeros), with W of size 8049 x 50, H 50 x 8660, maxiter = 50, lambda = 0.1, and identical initial W. They were run consecutivly, multithreaded on an 8-processor Sun server, starting at ~7:30PM. Tic-toc timing was recorded. Runtimes were respectivly 6586.2 and 70.5 seconds, a 93:1 difference. The maximum absolute pairwise difference between W matrix values was 6.6e-14. Similar speedups have been consistantly observed in other cases. In one algorithm, combining matrix operations with efficient use of the sparse matrix facilities gave a 3600:1 speedup. For speed alone, C-style iterative programming should be avoided wherever possible. In addition, when a couple lines of matrix code can substitute for an entire C-style function, program clarity is much improved. ---------------------------------------------------------------------------------------------------------------------- Matrix Coding - 2 Applied to integration, the speed gains are not so great, largely due to the time taken to set up the and deal with the boundaries. The anyomous function setup time is neglegable. I demonstrate on a simple uniform step linearly interpolated 1-D integration of cos() from 0 to pi, which should yield zero: tic; step = .00001; fun = @cos; start = 0; endit = pi; enda = floor((endit - start)/step)*step + start; delta = (endit - enda)/step; intF = fun(start)/2; intF = intF + fun(endit)*delta/2; intF = intF + fun(enda)*(delta+1)/2; for ii = start+step:step:enda-step intF = intF + fun(ii); end intF = intF*step toc; intF = -2.910164109692914e-14 Elapsed time is 4.091038 seconds. Replacing the inner summation loop with the matrix equivalent speeds things up a bit: tic; step = .00001; fun = @cos; start = 0; endit = pi; enda = floor((endit - start)/step)*step + start; delta = (endit - enda)/step; intF = fun(start)/2; intF = intF + fun(endit)*delta/2; intF = intF + fun(enda)*(delta+1)/2; intF = intF + sum(fun(start+step:step:enda-step)); intF = intF*step toc; intF = -2.868419946011613e-14 Elapsed time is 0.141564 seconds. The core computation take
데이터 정보
연관 데이터
Sparse Solutions for Single Class SVMs: A Bi-Criterion Approach
공공데이터포털
In this paper we propose an innovative learning algorithm - a variation of One-class  Support Vector Machines (SVMs) learning algorithm to produce sparser solutions with much reduced computational complexities. The proposed technique returns an approximate solution, nearly as good as the solution set obtained by the classical approach, by minimizing the original risk function along with a regularization term. We introduce a bi-criterion optimization that helps guide the search towards the optimal set in much reduced time. The outcome of the proposed learning technique was compared with the benchmark one-class Support Vector machines algorithm which more often leads to solutions with redundant support vectors. Through out the analysis, the problem size for both optimization routines was kept consistent. We have tested the proposed algorithm on a variety of data sources under different conditions to demonstrate the effectiveness. In all cases the proposed algorithm closely preserves the accuracy of standard one-class  SVMs while reducing both training time and test time by several factors.
Fast discriminative latent Dirichlet allocation
공공데이터포털
This is the code for fast discriminative latent Dirichlet allocation, which is an algorithm for topic modeling and text classification. The related paper is at http://www-users.cs.umn.edu/~shan/icdm09_dm.pdf
에이모 - 일몰-도심-비-혼잡-일반조도-우회전-중 보행자 근접 Bounding Box
공공데이터포털
< 자율주행 시나리오 데이터셋: 2D Bounding Box > - 데이터셋 유형 - 4대 카메라 센서 데이터 기반 2D Bounding Box 데이터셋 - 10초 동안 주행하며 수집한 자율주행 데이터를 5fps로 추출해 구축한 데이터셋 - 데이터셋 구성 1. 원천데이터_카메라 센서 데이터 1) 전방 FHD 카메라 이미지 데이터(.png): 50frames 2) 후방 FHD 카메라 이미지 데이터(.png): 50frames 3) 좌측방 FHD 카메라 이미지 데이터(.png): 50frames 4) 우측방 FHD 카메라 이미지 데이터(.png): 50frames 2. 원천데이터_메타데이터(파일 속성 정보, 센서 파라미터 정보, 차량 절대위치 및 자세 정보, 차량 상태 정보, 주행 환경 및 상황 정보) 1) 전방 카메라 이미지 메타데이터(.json): 50frames 2) 후방 카메라 이미지 메타데이터(.json): 50frames 3) 좌측방 카메라 이미지 메타데이터(.json): 50frames 4) 우측방 카메라 이미지 메타데이터(.json): 50frames 3. 2D Bounding Box 어노테이션 데이터 1) 전방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 2) 후방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 3) 좌측방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 4) 우측방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 4. 데이터셋 정의서
에이모 - 일몰-도심-흐림-혼잡-직진-일반조도-교차로 주행 멀티센서퓨전
공공데이터포털
< 자율주행 시나리오 데이터셋: 멀티센서퓨전 > - 데이터셋 유형 - 멀티센서(카메라-LiDAR) 퓨전 Bounding Box-Panoptic Segmentation-Cuboid/Track ID 데이터셋 - 10초 동안 주행하며 수집한 자율주행 데이터를 5fps로 추출해 구축한 데이터셋 - 데이터셋 구성 1. 원천데이터_카메라 센서 데이터 1) 전방 FHD 카메라 이미지 데이터(.png): 50frames 2) 후방 FHD 카메라 이미지 데이터(.png): 50frames 3) 좌측방 FHD 카메라 이미지 데이터(.png): 50frames 4) 우측방 FHD 카메라 이미지 데이터(.png): 50frames 2. 원천데이터_LiDAR 센서 데이터 1) 전방위 128ch LiDAR 포인트 클라우드 데이터(.pcd): 50frames 2) 전방 장거리 MEMs LiDAR 포인트 클라우드 데이터(.pcd): 50frames 3) 전방 중거리 MEMs LiDAR 포인트 클라우드 데이터(.pcd): 50frames 4) 후방 MEMs LiDAR 포인트 클라우드 데이터(.pcd): 50frames 5) 후방 사각지대 Hemispherical LiDAR 포인트 클라우드 데이터(.pcd): 50frames 6) 좌측방 사각지대 Hemispherical LiDAR 포인트 클라우드 데이터(.pcd): 50frames 7) 우측방 사각지대 Hemispherical LiDAR 포인트 클라우드 데이터(.pcd): 50frames 8) 전방위 + 후방 사각지대 + 좌측방 사각지대 + 우측방 사각지대 데이터를 융합한 포인트 클라우드 데이터(.pcd): 50frames 3. 원천데이터_메타데이터(파일 속성 정보, 센서 파라미터 정보, 차량 절대위치 및 자세 정보, 차량 상태 정보, 주행 환경 및 상황 정보) 1) 전방 카메라 이미지 메타데이터(.json): 50frames 2) 후방 카메라 이미지 메타데이터(.json): 50frames 3) 좌측방 카메라 이미지 메타데이터(.json): 50frames 4) 우측방 카메라 이미지 메타데이터(.json): 50frames 5) 융합된 전방위 LiDAR 포인트 클라우드 메타데이터(.json): 50frames 4. 2D Bounding Box 어노테이션 데이터 1) 전방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 2) 후방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 3) 좌측방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 4) 우측방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 5. Panoptic Segmentation 어노테이션 데이터 1) 전방 카메라 이미지 Panoptic Segmentation 데이터(.json): 50frames 2) 전방 카메라 이미지 Panoptic Segmentation 마스크 이미지(.png): 50frames 3) 전방 카메라 이미지 Semantic Segmentation 마스크 이미지(.png): 50frames 4) 전방 카메라 이미지 Instance Segmentation 마스크 이미지(.png): 50frames 6. Cuboid(3D Bounding Box)/Track ID 어노테이션 데이터 1) 융합된 전방위 LiDAR 포인트 클라우드 Cuboid/Track ID 데이터(.json): 50frames 7. 데이터셋 정의서
Code for use within Matlab for computing the damping and lag time of responses to cyclical infiltration in a layered vadose zone in Central Valley, California
공공데이터포털
This data release contains code for computing the filtering properties of cyclical infiltration in a layered vadose zone in Central Valley, California. The code for computing the filtering is described in a manuscript that is under review at Vadose Zone Journal. The updated data contained in this data release are the code to compute the filtering properties of the vadose zone. This code was developed in 2018. The code uses existing data as inputs. The inputs are from a groundwater flow model for Central Valley, California, described by Faunt et al. (2009), and from a soil texture model described by Faunt et al. (2010). The inputs from Faunt et al. (2009) and Faunt et al. (2010) were released in those years and are available for download from https://ca.water.usgs.gov/projects/central-valley/central-valley-hydrologic-model.html
에이모 - 일몰-도심-흐림-혼잡-직진-일반조도-교차로 주행 Cuboid
공공데이터포털
< 자율주행 시나리오 데이터셋: Cuboid(3D Bounding Box)/Track ID > - 데이터셋 유형 - 7대 LiDAR 센서 데이터 기반 Cuboid/Track ID 데이터셋 - 10초 동안 주행하며 수집한 자율주행 데이터를 5fps로 추출해 구축한 데이터셋 - 데이터셋 구성 1. 원천데이터_LiDAR 센서 데이터 1) 전방위 128ch LiDAR 포인트 클라우드 데이터(.pcd): 50frames 2) 전방 장거리 MEMs LiDAR 포인트 클라우드 데이터(.pcd): 50frames 3) 전방 중거리 MEMs LiDAR 포인트 클라우드 데이터(.pcd): 50frames 4) 후방 MEMs LiDAR 포인트 클라우드 데이터(.pcd): 50frames 5) 후방 사각지대 Hemispherical LiDAR 포인트 클라우드 데이터(.pcd): 50frames 6) 좌측방 사각지대 Hemispherical LiDAR 포인트 클라우드 데이터(.pcd): 50frames 7) 우측방 사각지대 Hemispherical LiDAR 포인트 클라우드 데이터(.pcd): 50frames 8) 전방위 + 후방 사각지대 + 좌측방 사각지대 + 우측방 사각지대 데이터를 융합한 포인트 클라우드 데이터(.pcd): 50frames 2. 원천데이터_메타데이터(파일 속성 정보, 센서 파라미터 정보, 차량 절대위치 및 자세 정보, 차량 상태 정보, 주행 환경 및 상황 정보) 1) 융합된 전방위 LiDAR 포인트 클라우드 메타데이터(.json): 50frames 3. Cuboid(3D Bounding Box)/Track ID 어노테이션 데이터 1) 융합된 전방위 LiDAR 포인트 클라우드 Cuboid/Track ID 데이터(.json): 50frames 4. 데이터셋 정의서
Towards a Structured Evaluation Methodology for Artificial Intelligence Technology (SEMAIT) MIg analyZeR (mizr) Package
공공데이터포털
Our work towards a Structured Evaluation Methodology for Artificial Intelligence Technology (SEMAIT) aims to provide plots, tools, methods, and strategies to extract insights out of various machine learning (ML) and Artificial Intelligence (AI) data.Included in this software is the MIg analyZeR (mizr) R software package that produces various plots. It was initially developed within the Multimodal Information Group (MIG) at the National Institute of Standards and Technology (NIST).This software is documented, configured to be installed as an R package, and comes with an example SEMAIT script with an example (system, dataset, metrics, score) ML tuple set that we constructed ourselves.
에이모 - 일몰-도심-흐림-혼잡-직진-일반조도-교차로 주행 Bounding Box
공공데이터포털
< 자율주행 시나리오 데이터셋: 2D Bounding Box > - 데이터셋 유형 - 4대 카메라 센서 데이터 기반 2D Bounding Box 데이터셋 - 10초 동안 주행하며 수집한 자율주행 데이터를 5fps로 추출해 구축한 데이터셋 - 데이터셋 구성 1. 원천데이터_카메라 센서 데이터 1) 전방 FHD 카메라 이미지 데이터(.png): 50frames 2) 후방 FHD 카메라 이미지 데이터(.png): 50frames 3) 좌측방 FHD 카메라 이미지 데이터(.png): 50frames 4) 우측방 FHD 카메라 이미지 데이터(.png): 50frames 2. 원천데이터_메타데이터(파일 속성 정보, 센서 파라미터 정보, 차량 절대위치 및 자세 정보, 차량 상태 정보, 주행 환경 및 상황 정보) 1) 전방 카메라 이미지 메타데이터(.json): 50frames 2) 후방 카메라 이미지 메타데이터(.json): 50frames 3) 좌측방 카메라 이미지 메타데이터(.json): 50frames 4) 우측방 카메라 이미지 메타데이터(.json): 50frames 3. 2D Bounding Box 어노테이션 데이터 1) 전방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 2) 후방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 3) 좌측방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 4) 우측방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 4. 데이터셋 정의서
에이모 - 일몰-도심-흐림-혼잡-우회전-일반조도-교차로 합류 Bounding Box
공공데이터포털
< 자율주행 시나리오 데이터셋: 2D Bounding Box > - 데이터셋 유형 - 4대 카메라 센서 데이터 기반 2D Bounding Box 데이터셋 - 10초 동안 주행하며 수집한 자율주행 데이터를 5fps로 추출해 구축한 데이터셋 - 데이터셋 구성 1. 원천데이터_카메라 센서 데이터 1) 전방 FHD 카메라 이미지 데이터(.png): 50frames 2) 후방 FHD 카메라 이미지 데이터(.png): 50frames 3) 좌측방 FHD 카메라 이미지 데이터(.png): 50frames 4) 우측방 FHD 카메라 이미지 데이터(.png): 50frames 2. 원천데이터_메타데이터(파일 속성 정보, 센서 파라미터 정보, 차량 절대위치 및 자세 정보, 차량 상태 정보, 주행 환경 및 상황 정보) 1) 전방 카메라 이미지 메타데이터(.json): 50frames 2) 후방 카메라 이미지 메타데이터(.json): 50frames 3) 좌측방 카메라 이미지 메타데이터(.json): 50frames 4) 우측방 카메라 이미지 메타데이터(.json): 50frames 3. 2D Bounding Box 어노테이션 데이터 1) 전방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 2) 후방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 3) 좌측방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 4) 우측방 카메라 이미지 2D Bounding Box 데이터(.json): 50frames 4. 데이터셋 정의서