• 통큰쿠폰이벤트-통합
  • 통합검색(18)
  • 리포트(14)
  • 논문(2)
  • 시험자료(2)

"size-strain plot" 검색결과 1-18 / 18건

  • 머신러닝과 딥러닝을 사용한 Wine Quality 분류
    = Y, test_size = 0.2)reg.fit(X_train,Y_train)reg.score(X_test, Y_test)결과0.*************7068-> quality ... = 42, stratify = Y, test_size = 0.2)reg.fit(X_sd_train,Y_sd_train)reg.score(X_sd_test,Y_sd_test)결과0.24272149154957146MSE ... kn.score(X_test, Y_test)score_list.append(score)plt.plot(range(3, len(score_list)+3), score_list)plt.grid
    리포트 | 23페이지 | 2,000원 | 등록일 2023.12.16 | 수정일 2024.01.09
  • 고려대학교 객체지향프로그래밍 A+ 기말고사 치팅시트
    , y_test = train_test_split(X, y, train_size=0.6, random_state=0)MLPCNNModel compile: setup trais=[‘accuracy ... the sum of output is 1from sklearn.model_selection import train_test_split / x_train, x_test, y_train ... / tf.keras.utils.plot_model(model) (그림)BW image: black-255, white-0 / CNN- Covolution(relu activation
    리포트 | 2페이지 | 2,000원 | 등록일 2023.07.02
  • 한양대학교 공학도를위한창의적프로그래밍 기말고사 치팅페이퍼
    =’Out’], Y=df.loc[:, ‘Out’]- X_train,X_test,Y_train,Y_test=train_test_split(X,Y,test_size=0.23. ... ].plot.kde()3) 박스플롯: df[ [‘ ’,‘ ’,...] ].plot.box()4) 데이터분포: df[‘Out’].value_counts(normalize=True)2 ... 수df.loc[ (df[‘ ’]==‘서울시’) & (==‘약국’) , ‘시군구’ ].value_counts()3) 서울시 전체 의료기관 시각화df.loc[ (df[‘ ’]==‘서울시’) ].plot.scatter
    시험자료 | 1페이지 | 2,000원 | 등록일 2023.01.20
  • 기계학습(머신러닝) 알고리즘과 평가 방법
    #split training set and test setX_train , X_test , y_train , y_test = train_test_split (X , y , test_size ... Ridgefrom sklearn .model_selection import train_test_split#read data-setdataset = pd .read_csv ('Weather.csv ... 교차 검증40(1) K-fold 교차 검증40(2) 12341나) 홀드 아웃 교차 검증42training set for supervised model.5Using new data
    리포트 | 43페이지 | 5,000원 | 등록일 2020.06.05 | 수정일 2020.06.09
  • MLP(다층퍼셉트론) 학습 기법(파라미터 기반) 실습 보고서
    ='auto')enc.fit(y)y = enc.transform(y)x_train, x_test, y_train,el.evaluate(x_test, y_test, batch_size ... [1])plt.figure(figsize=(12,8))plt.plot(history.history['loss'])plt.plot(history.history['accuracy'])plt.legend ... # 해당 인덱스는 무작위로 생성됩니다.# 무작위로 생성해주는 것은 과대적합을 피할 수 있는 좋은 방법입니다.x_train_fold, x_val_fold = x_train[train_index
    리포트 | 17페이지 | 5,000원 | 등록일 2021.01.22
  • Adsorption capability of activated carbon synthesized from coconut shell
    한국탄소학회 Md Shariful Islam, Bee Chin Ang, Samira Gharehkhani, Amalina Binti Muhammad Afifi
    논문 | 9페이지 | 4,000원 | 등록일 2023.04.05
  • High temperature deformation of Ni-base superalloys, 니켈기 초합금의 고온 변형
    strain ranges at any other temperature. ... Mata, Grain size modeling of a Ni-base superalloy using cellular automata algorithm, Materials & Design ... drop with increasing cycling as observed in the cumulative glide plot.
    리포트 | 10페이지 | 1,000원 | 등록일 2018.05.21 | 수정일 2019.04.14
  • Adsorption capability of activated carbon synthesized from coconut shell
    한국탄소학회 Md Shariful Islam, Bee Chin Ang, Samira Gharehkhani, Amalina Binti, Muhammad Afifi
    논문 | 9페이지 | 3,000원 | 등록일 2017.04.17
  • MATLAB code - Adaptive decision boundary(ADB) project 구현
    (W의 초기값에 따라 decision boundary를 찾는 시간이 달라질 수 있다.)그리고 training set에 있는 s 수렴하는 속도(step size)로 생각 할 수 있으며 ... (1),w1)/difference_w(length_difference_w(1),w2)*xx1;plot(xx1, xx2, 'k-')? ... The training samples are as follows.x1x2d*************5-16530-13540-1# Items to be submitted : report
    리포트 | 5페이지 | 1,500원 | 등록일 2014.04.24
  • [화학공정실험] Aspen HYSYS 하이시스 완벽 정리 + 문제풀이
    →→→→→→→Simulation - Equipment design - Add - Tray sizing - Packing - Select TS.. - OK→ Tray sizing - ... The most technologically feasible purification train consist of a water gas shift reaction (WGS). ... X축 범위 설정∴Result or Plots 탭에서 그래프 확인가능Ch.2 Pump & CompressorPb 2.1)Pumps are used to move liquids.
    시험자료 | 12페이지 | 1,500원 | 등록일 2016.06.18
  • matlab 으로 구현한 perceptron report
    (xInp,2)num_hid = 3num_out = size(tOut,2)wh = 0.5*(1-2*rand(num_inp,num_hid))wo = 0.5*(1-2*rand(num_hid ... 1 0.7 0.3 -1.5 -1.5 -2 1]out =[1 1 1 -1 -1 -1 -1 1]plot(x(out==1),y(out==1),'r+')hold onplot(x(out==- ... % written by Young G Choi% Date: Nov 26 2012% XOR training data setxInp = [0 0; 0 1; 1 0; 1 1];tOut =
    리포트 | 9페이지 | 1,500원 | 등록일 2013.06.23
  • A Souvenir of Japan
    size. ... A Souvenir of JapanI NDEX Author - Angela Carter Plot/Summary Characters/Theme AnalysisAuthor 01Angela ... .Plot 02Plot Storytelling a woman’s past experiences with her lover in Japanese culture With several
    리포트 | 26페이지 | 2,000원 | 등록일 2012.05.28
  • Sustainable Development(Sasakawa, UNDP)
    The plots are large -- 1,000 to 5,000 square meters -- On plots of this size, after a season of tilling ... For extension agents, the hands-on training builds a valuable foundation for their future interactions ... SG 2000 supports training sessions for extension workers and for participating farmers in the community
    리포트 | 25페이지 | 2,500원 | 등록일 2011.05.16
  • 3st_project
    But, the file size decreased as half of the original, and we got the quite low RMS error value, 0.40083 ... (mean(d(:).^2));SNR=10*LOG10(255^2/RMS^2) % SNRfor r=1:7SNR(r)=bitall(r);endfigure(2)plot(SNR)figure( ... improve our technical competence and to undertake technological tasks for others only if qualified by training
    리포트 | 5페이지 | 2,000원 | 등록일 2012.04.03
  • 점도 측정 실험
    Plots of shear force vs. shear rate for Newtonian and non-Newtonian fluids are given in Fig. 6.2.We leteta ... a piece of a liquid moving at a strain rate γ under an applied on known as shear thinning. ... 이론적 배경(1) IntroductionViscosity of a polymer solution depends on concentration and size (ie, molecular
    리포트 | 10페이지 | 3,000원 | 등록일 2011.09.02
  • Gene Disruption of MNN4 in Candida albican using URA-BLASTER system effects on mannosylphosphrylation
    The 1-kb ladder is shown in the gels with the size.A. ... to that of the wild-type strain. ... To select ura- strains, a plate containing 5-fluoroorotic acid was used.
    리포트 | 15페이지 | 2,000원 | 등록일 2007.03.04
  • [고분자공학]Influence of surface functionalized montmorillonite clay on the properties of polyvinyl alcohol nanocomposites
    Strain induced ordering of spherulites leads to the development various crystallite sizes. ... However strain induced ordering of clay platelets reduces the formation of vartured samples indicating ... and thereby improving the Tg Width of the peak increases due to straining in the case of pure PVOH,
    리포트 | 15페이지 | 2,000원 | 등록일 2005.10.11
  • 유한요소법을 이용한 대변위 변형 시뮬레이션
    대변위 변형어떠한 구조물이 외부로 부터 물리적인 충격을 받았을 경우를 가정하였을 때 그 구조물은 물리적 충격을 받는 순간 바로 변형(strain)이 이루어진다. ... 시킨 모습fig.4 : Hypermesh 7.0을 이용해 모델에 mesh를 입힌 모습2. mesh 입히기Hypermesh 7.0은 automesh 기능을 지원한다. element size를 ... 폴더 설정 및 CPU 계수를 설정해 주고 해석을 시작하면 지정된 저장 폴더 내에 해석결과를 보여주는 파일들이 생성된다.결과 확인을 위해 LS-prepost 모드를 사용하여 d3plot
    리포트 | 1페이지 | 4,500원 | 등록일 2008.01.26
  • 아이템매니아 이벤트
  • 유니스터디 이벤트
AI 챗봇
2024년 09월 15일 일요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
4:28 오전
문서 초안을 생성해주는 EasyAI
안녕하세요. 해피캠퍼스의 방대한 자료 중에서 선별하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 목차부터 본문내용까지 자동 생성해 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
9월 1일에 베타기간 중 사용 가능한 무료 코인 10개를 지급해 드립니다. 지금 바로 체험해 보세요.
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감
방송통신대학 관련 적절한 예)
- 국내의 사물인터넷 상용화 사례를 찾아보고, 앞으로 기업에 사물인터넷이 어떤 영향을 미칠지 기술하시오
5글자 이하 주제 부적절한 예)
- 정형외과, 아동학대