找到约 10000 条结果
  • INF 552
    Supervised, Semi-Supervised, and Unsupervised Learning(a) Download the Breast Cancer Wisconsin (Diagnostic) Data Set from:[链接]%28Diagnostic%29. Download the data in [链接]machine-learning-databases/breast-cancer-wisconsin/wdbc.data, whichhas IDs, classes (Benign=B, Malignant=M), and 30 attribut...
    2021-06-22
  • INF 552机器学习
    Supervised, Semi-Supervised, and Unsupervised Learning(a) Download the Breast Cancer Wisconsin (Diagnostic) Data Set from:[链接]%28Diagnostic%29. Download the data in [链接]machine-learning-databases/breast-cancer-wisconsin/wdbc.data, whichhas IDs, classes (Benign=B, Malignant=M), and 30 attribut...
    2021-07-06
  • EBU4201 Introductory Java Programming
    EBU4201 Introductory Java Programming 2023/24Mini ProjectTask 1 [25 marks]SuperHeroTT is a simple Graphical User Interface (GUI) application for children where they canpractise their times tables (see Figure 1).Figure 1 - First launch of SuperHeroTTWhen launched, your app should look like Figure ...
    2024-05-06
  • Writing Functions with Same Name and Different Parameters
    I've been wondering how to write functions and methods with the same name but different parameters, as if we had "overloaded" them. According to wiki, this is called multiple dispatching because in Python it happens in run time but not compile time.
    2021-09-28
  • 159.201算法数据结构
    159.201 Algorithms & Data StructuresS1 2022Assignment 6Write a C++ program to implement Dijkstra's algorithm that can find the minimum costs from node A to all othernodes. A generic graph with an arbitrary number of nodes is written into a text file, and the program should beable to read it and i...
    2023-02-02
  • CS 659 图像处理
    CS 659 Image ProcessingExam TwoName: Student ID #:Covering Lectures 7~13. There are 4 questions. Each is 25 points.
    2021-07-09
  • SQL常用语句2
    SELECTE.EmployeeID, E.EmployeeName, M.EmployeeName AS Manager FROM Employee_T E, Employee_T M WHERE E.EmployeeSupervisor = M.EmployeeID; [self join, find out all the managing relationships,]SELECTCOUNT(OrderID) as N_APP FROM OrderLine_T WHERE ProductID = 4 AND OrderID IN (SELECTOrderID FROM Order...
    2020-06-01
  • Swift Learning Summary: Basic Operator
    Basic OperatorsTerminologyUnary operator (such as -a)Binary operator(such as 2 + 3)Ternary operator(such as a ? b : c)The values that operators affect are operands. Prefix, infix, suffixAssignment Operator {代码...} Arithmetic OperatorsAddition+Subtraction-Multiplication*Division/ {代码...} Remai...
    2022-03-19
  • INFO1103 SQL语句查询
    INFO1103: Assignment ThreeDue, Sunday 24 February 2019, submitted to D2L before midnight.
    2021-10-07
  • 159.234
    159.234-2021 Semester 11Assignment 2Deadline: Thursday 6 May, 11 PMEvaluation: 40 marks – which represents 20% of your final gradeLate Submission: 5 marks off per day lateTeams: The assignment can be done individually or in teams of two people (oneassignment per team submitted including both stud...
    2022-05-06
  • GSND 5345Q, Fundamentals of Data Science
    Now its time to practice what we have learned in class and learn even more! Note that from now on your homework should be written in R Markdown. Turn in your html file and Rmd files, and any other relevant files in a tarball. Then turn it in by uploading to canvas.
    2025-02-19
  • COMP9315 数据库
    3/15/22, 2:09 PM COMP9315 22T1 - Assignment 1[链接] 1/8DeadlinePre-requisites:Late Penalty:Marks:Submission:COMP9315 22T1 Assignment 1Adding a PersonName Data Type toPostgreSQLDBMS ImplementationLast updated: Tuesday 22nd February 2:16pmMost recent changes are shown in red ... older changes are s...
    2022-03-26
  • COMP9315 问题求解与算法
    3/15/22, 2:09 PM COMP9315 22T1 - Assignment 1[链接] 1/8DeadlinePre-requisites:Late Penalty:Marks:Submission:COMP9315 22T1 Assignment 1Adding a PersonName Data Type toPostgreSQLDBMS ImplementationLast updated: Tuesday 22nd February 2:16pmMost recent changes are shown in red ... older changes are s...
    2023-01-19
  • Hooking & Executing Code --hooking Swift methods
    First off, Swift often uses classes or structs in typical development. This is a unique challenge because dlsym will only give you a C function. You’ll need to augment this function so the Swift method can reference self if you’re grabbing an instance method, or reference the class if you’re call...
    2017-10-23
  • mysql - FIND_IN_SET()
    FIND_IN_SET(str,strlist)官方说明 {代码...} 重点说明:查询字段strlist是否包含str,如果包括返回str所在下标(从1开始),否则返回0.strlist是一个字符串集合通过,分割当参数str或者strlist任何一个为null的时候结果返回nullstr参数不应该包含,看几个示例 {代码...} 一些项目中的实际应用 {代码...} {代码...} 参考[链接]
    2022-09-24
  • postgresql中两张表的聚合函数合并到一列或一行,做除法,并保留两位小数
    SELECT A.name, B.name FROM (select o.name, row_number() over(order by name) from tb_org as o) A   FULL JOIN  (select r.name, row_number() over(order by r.name) from tb_region as r) B ON A.row_number = B.row_number;
    2024-04-24
  • Swift Learning Summary: Function
    Use the inout with reference to change the the original value outside.
    2022-04-02
  • IDEPG001 Programming
    IDEPG001 Programming Coursework The marks for each element are clearly indicated in the attached marking scheme. This assignment constitutes 70% of the total marks for this subject. Programming Programming V1 2324 © NCUK Ltd. 2023 Page 2 of 8 The brief As part of a climate change project, a natur...
    2024-05-08
  • FSP Computing 原理解析
    FSP ComputingFSP Computing &Information SystemsJavaScript AssignmentDates Due:Part A: Friday 18th June 2021Part B: Friday 25th June 2021Creating a Web-Based Order FormUsing the HTML project you completed earlier in this course you are required to produce an additional web page,which provides ...
    2021-06-18
  • 159.234 java核心解析
    159.234 OBJECT-ORIENTED PROGRAMMING S1, 2023Assignment 2Deadline: 11 May 2023, 11pmEvaluation: 40 marks (15% of your final grade)Late Submission: Deduct 5 marks per day lateIndividual Work You must complete this assignment by yourself (you must NOT share your codewith others or use others’ code i...
    2023-05-10