EECS 649 Introduction to Artificial Intelligence
Exam
Electronic Blackboard Submission Due: April 24, 2019 @ 9PM
Paper Copy Due: April 25, 2019 @ 4PM
200 Points
Directions: You must read and follow these directions carefully. This is a 3 hour open notes,
open internet exam. You may not collaborate or communicate with another student in the class
or outside the class regarding the exam from 6pm, 4/24/2019 to 5 AM, 4/25/2019.
In order to discourage cheating, if you can prove another student was asking you for help or
discussing the exam with you prior to you or them submitting the exam and are the first to report
it, you will receive 50 extra points (not to exceed 200 points total) and they will have 50 points
subtracted from their total). The person that attempted to cheat first will not be able to gain any
points for reporting another cheating student but the reported cheating student will be deducted
50 points. Any group attempt to maximize total or individual gains from any type of cheating
will all receive zero points for their exam grade. Any detected cheating or plagiarism will result
in a zero points exam grade.
There will be 5% grade reduction if the exam is turned in electronically after midnight and an
additional 5% grade reduction if turned in electronically after 2 AM. Exams will not be given
ANY credit if submitted electronically after 5AM, April 25, 2019.
No questions will be answered by the instructor during the exam. If you run into any issues, do
your best to describe your assumptions or any discrepancies and solve the problem.
The exam answers that are not part of the programming portion should be submitted as a PDF
file. Clearly label the problem numbers, letters, and answers. Questions 1-4 should be typed
(you may include diagrams if you wish). Question 5 can be submitted as a scanned PDF of a
handwritten answer since it involves “drawing” some diagrams. The programming portion
(Question 4) should be submitted as a zip file containing all of the requested data and code.
Make sure that your name is included at the top of each submitted page or file.
TURN IN A PAPER COPY OF YOUR EXAM ANSWERS IDENTICAL TO YOUR
ELECTRONICALLY SUBMITTED ANSWERS (MINUS THE DATA FILES) TO THE EECS
OFFICE IN EATON 2001 BY 4PM ON APRIL 25, 2019. NO LATE PAPER COPIES WILL
BE ACCEPTED.

代写EECS 649作业、代做Artificial Intelligence作业、R课程设计作业代写、代做R编程作业
First Name: __________________________ Last Name: ___________________________
2
1. [60 points] General Artificial Intelligence: Write a coherent and well organized one to two
page essay in paragraph form that explains what AI is, what it is not, and what are its
limitations or dangers. Be sure to include, explain, and clearly identify (e.g. number) the
following concepts: the history of AI, the present status of AI, intelligent agents and their
various architectures, problem solving as search, learning, environment characteristics of an
intelligent agent, ethics, real-world examples, and list some of the subfields of AI. The real
world examples you provide should be from the in-class guest lectures. Be sure to give your
essay a title and adhere to spelling and grammar rules.
2. [20 points] Logistic regression and deep learning: Briefly compare and contrast logistic
regression and deep learning. Be sure to give definitions of each. Be sure to adhere to
spelling and grammar rules.
3. [20 points] Reinforcement learning: Briefly explain what reinforcement learning is and how
does it relate to other methods of learning. Be sure to adhere to spelling and grammar rules.
4. [80 points] Programming Machine Learning: Write a program in the language of your choice
(e.g. R) to create a supervised learning model to predict the housing prices given the data
provided on Blackboard (housetrain.csv, housetest.csv, and housedata_description.txt).
Prepare the training set and test set to include only the following features: year and month of
sale, lot square footage, and number of bedrooms.
housetrain.csv - the training set
housetest.csv - the test set
housedata_description.txt - full description of each column
a. What is the particular supervised learning method you are using and why did you
choose it over other methods?
b. What did you do with the data to prepare it for processing? [Rename your prepped
data to housetrain_prepped.csv and housetest_prepped.csv]
c. How did you go about training your machine learning model (i.e. explain the stepby-step
process you used)?
d. What are the set of features and the specific coefficient values that give you the
best results?
e. What is your R2 value (i.e. r-squared value) and what does it mean?
f. What is your RMSE value between the logarithm of the predicted value and the
logarithm of the observed sales price. (Taking logs means that errors in predicting
expensive houses and cheap houses will affect the result equally.)
First Name: __________________________ Last Name: ___________________________
3
g. What is the predicted sales price values for id 1625 in the housetest.csv file ? To
find the feature, or predictor, values for this problem, open the housetest.csv file
and look at the row that has id 1625. Use only the year and month of sale, lot
square footage, and number of bedrooms in your learning model from that
example.
h. Graduate students only: Create another learning model and determine the set of
features that provides the best result. List the features you identify and the
coefficients . State the R2 , RMSE values and compare them with the first
learning model you created. Graduate student with the best performing model
wins “the prize.” Undergraduate students may do this portion for extra credit.
i. Graduate students only: Write down the predicted sales prices for id 1625 in
test.csv using your new learning model from part h . Undergraduate students
may do this portion for extra credit.
j. Be sure to upload your R code and data to blackboard in a zip file labeled
<your name>_machinelearningcode.zip
Your R code and data should produce and display the results you describe in “a”
through “i” above.
First Name: __________________________ Last Name: ___________________________

因为专业,所以值得信赖。如有需要,请加QQ:99515681 或邮箱:99515681@qq.com

微信:codinghelp

EECS 649 Introduction to Artificial Intelligence的更多相关文章

  1. (转)A curated list of Artificial Intelligence (AI) courses, books, video lectures and papers

    A curated list of Artificial Intelligence (AI) courses, books, video lectures and papers. Updated 20 ...

  2. ARTIFICIAL INTELLIGENCE FOR GAMES (Ian Millington / John Funge 著)

    相关网站:http://www.ai4g.com PART I AI AND GAMESCHAPTER1 INTRODUCTIONCHAPTER2 GAME AIPART II TECHNIQUESC ...

  3. Artificial intelligence(AI)

    ORM: https://github.com/sunkaixuan/SqlSugar 微软DEMO: https://github.com/Microsoft/BotBuilder 注册KEY:ht ...

  4. (转) Artificial intelligence, revealed

    Artificial intelligence, revealed Yann LeCunJoaquin Quiñonero Candela It's 8:00 am on a Tuesday morn ...

  5. Artificial Intelligence Language

    Artificial Intelligence Language Objective We know, a true AI program should have ability to underst ...

  6. 拼写纠正 Artificial Intelligence: A Modern Approach

    Artificial Intelligence: A Modern Approach http://mindhacks.cn/2008/09/21/the-magical-bayesian-metho ...

  7. Artificial Intelligence Research Methodologies 人工智能研究方法

    Computer Science An Overview _J. Glenn Brookshear _11th Edition To appreciate the field of artificia ...

  8. UVa 537 Artificial Intelligence?

    题目大意:输入一个字符串,根据物理公式P=U*I,已知其中两个量,求第三个量,结果保留两位小数.   Artificial Intelligence?  Physics teachers in hig ...

  9. PAIP: Paradigms of Artificial Intelligence Programming

    PAIP: Paradigms of Artificial Intelligence Programming PAIP: Paradigms of Artificial Intelligence Pr ...

随机推荐

  1. 2019OO第一单元总结

    第一次作业 (你没看错,就一个类...) 通过正则表达式处理输入的字符串,提取出每一项的系数和指数,在输出的时候,应当考虑到合并同类项和正项提前的问题,使得最终的输出最短. 我第一次作业的代码超级难看 ...

  2. 2019年春季学期第二周作业 基础作业 请在第一周作业的基础上,继续完成:找出给定的文件中数组的最大值及其对应的最小下标(下标从0开始)。并将最大值和对应的最小下标数值写入文件。 输入: 请建立以自己英文名字命名的txt文件,并输入数组元素数值,元素值之间用逗号分隔。 输出 在不删除原有文件内容的情况下,将最大值和对应的最小下标数值写入文件

    ~~~ include<stdio.h> include<stdlib.h> int main() { FILE*fp; int i=0,max=0,j=0,maxb=0; i ...

  3. sourceTree如何不用注册就使用

    下载好之后会有这么一个界面要求你注册或登录.(不管它)将下面的一串串放进我的电脑的地址栏,打开sourcetree的文件夹 %LocalAppData%\Atlassian\SourceTree\ 注 ...

  4. python摸爬滚打之----tcp协议的三次握手四次挥手

    TCP协议的三次握手, 四次挥手 三次握手过程 1, 服务器时刻准备接受客户端进程的连接请求, 此时服务器就进入了LISTEN(监听)状态; 2, 客户端进程然后向服务器发出连接请求报文, 之后客户端 ...

  5. 常见查找算法(Java代码实现)

    一,顺序查找 查找算法中顺序查找算是最简单的了,无论是有序的还是无序的都可以,只需要一个个对比即可,但其实效率很低.我们来看下代码 public static int search(int[] a, ...

  6. Freemaker Replace函数的正则表达式运用

    replace(param1,param2,param3) param1 正则表达式:param2 将匹配的字符替换成指定字符:param3 模式 param3 参数如下  模式  i   r   m ...

  7. MPLS的模拟学习过程

    1.场景拓扑 使用小凡模拟器搭建了如下网络拓扑,使用的镜像为:c3640-jk9o3s-mz.122-15.T9.bin 相关的配置在下方 如果重复实验,需要清空设备的配置,知道路由器的密码,操作步骤 ...

  8. 并发编程实战1-chap1-2-斗者6星

    一.线程安全性 1.线程安全关注点:对共享的和可变的状态的访问 2.JAVA同步机制:synchronized.volatile.显示锁.原子变量 3.无状态对象一定是线程安全的:不包含任何域,也不包 ...

  9. 2018-2019 20175232 实验二《Java面向对象程序设计》实验报告

    一.实验内容及步骤 1熟练掌握Junit和TDD: TDD(Test Driven Devlopment, 测试驱动开发)我们是该“先写产品代码,然后再写测试代码,通过测试发现了一些Bugs,修改代码 ...

  10. linux 系统管理11 ——系统安全及应用

    一.基本安全措施 1.系统账号清理 (1).将非登陆用户的shell设为/sbin/nologin 方法一.usermod -s 方法二.chsh命令,交互式修改 方法三.chsh -s usermo ...