99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫CS 61B、代做java編程設計

時間:2024-04-28  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



 Project 2C: Ngordnet Enhancements | CS 61B Spring 2024
 1/11
CS 61B
Projects / Project 2C: Ngordnet Enhancements
Each assignment will have an FAQ linked at the top. You can also access it by adding “/faq” to
the end of the URL. The FAQ for Project 2C is located here.
In this project, you?ll complete your implementation of the NGordnet for k!=0 and
commonAncestors case.
As this is a quite new project, there may be occasional bugs or confusion with the spec. If you
notice anything of this sort, please post on Ed.
DANGER
Please read through the 2B spec before starting 2C.
DANGER
THE SETUP FOR THIS PROJECT IS DIFFERENT THAN THE OTHER LABS / PROJECTS.
PLEASE DO NOT SKIP THIS STEP!
Project 2C: Ngordnet Enhancements
FAQ
Checkpoint & Design Doc Due 03/15/2024
Coding Due 04/01/2024
Project Setup
Skeleton Setup
Similar to other assignments in this class, run git pull skeleton main to get the skeleton
code for this project.
1
NOTE: You?ll notice that this skeleton is (almost) the exact same as the Project 2B
skeleton. This is intentional.
a
Download the data files for this project using this link and move them into your proj2c
folder on the same level as src .
2
 Project 2C: Ngordnet Enhancements | CS 61B Spring 2024
 2/11
Once you are done, your proj2c directory should look like this:
WARNING
While you can (and should!) certainly design for 2C in advance, we suggest only starting to
code after you get a full score on Project 2B just in case your implementation has any
subtle bugs in it.
WARNING
IMPORTANT NOTE: You should really complete Project 2B/C: Checkpoint first before
starting coding, or even designing your project. It will be helpful for your understanding of
the project. We will also require you to submit a design document to Gradescope. More
details about the design document can be found in Deliverables and Scoring.
This part of the project is designed for you to come up with an efficient and correct design for
your implementation. The design you come up with will be very important to handle these
cases. Please read the 2B & 2C spec carefully before starting your design document.
Copy your implementation from 2A for ngrams , including TimeSeries and NGramMap , into
the proj2c folder.
3
Copy your implementation from 2B into the proj2c folder, since k!=0 &
commonAncestors will depend on your implementation from 2A and 2B.
4
proj2c
├── data
│ ├── ngrams
│ └── wordnet
├── src
│ ├── <2B helper files>
│ ├── browser
│ ├── main
│ ├── ngrams
│ │ ├── <Your NGramMap implementation from 2A>
│ │ └── <Your TimeSeries implementation from 2A>
│ └── plotting
├── static
└── tests
Copy
Getting Started
 Project 2C: Ngordnet Enhancements | CS 61B Spring 2024
 3/11
We?ve created two wonderful tools that you can (and should!) use to explore the dataset, see
how the staff solution behaves for specific inputs, and get expected outputs for your unit tests
(see Testing Your Code). We?ll link them here, as well as in other relevant parts of the spec.
Wordnet Visualizer: Useful for visually understanding how synsets and hyponyms work and
testing different words/lists of words for potential test case inputs. Click on the “?” bubbles
to learn how to use the various features of this tool!
Staff Solution Webpage: Useful for generating expected outputs for different test case
inputs. Use this to write your unit tests!
TASK
Read through the entire 2B/C spec and complete Project 2B/C: Checkpoint
After finishing the checkpoint, complete Design Document
In Project 2B, we handled the situation where k == 0 , which is the default value when the
user does not enter a k value.
Your required task is to handle the case where the user enters k . k represents the maximum
number of hyponyms that we want in our output. For example, if someone enters the word
“dog”, and then enters k = 5 , your code would return at most 5 words.
To choose the 5 hyponyms, you should return the k words which occurred the most times in
the time range requested. For example, if someone entered words = ["food", "cake"] ,
startYear = 1950 , endYear = 19** , and k = 5 , then you would find the 5 most popular
words in that time period that are hyponyms of both food and cake. Here, the popularity is
defined as the total number of times the word appears over the entire time period requested.
The words should then be returned in alphabetical order. In this case, the answer is [cake,
cookie, kiss, snap, wafer] if we?re using top_14377_words.csv , total_counts.csv ,
synsets.txt , and hyponyms.txt .
DANGER
Be sure you are getting the words that appear with the highest counts, not the highest
weights. Otherwise, you will run into issues that are very difficult to debug!
Note that if the frontend doesn?t supply a year, default values of startYear = 1**0 and endYear
= 2020 are provided by NGordnetQueryHandler.readQueryMap .
It might be hard to figure out the hyponyms of the words with k != 0 so we are providing
data that is easier to visualize! Below, you?ll see a modified version for EECS class
?
?
Handling k != 0
 Project 2C: Ngordnet Enhancements | CS 61B Spring 2024
 4/11
requirements, inspired by HKN. We have also provided the data that represents the graph
below ( frequency-EECS.csv , hyponyms-EECS.txt , synsets-EECS.txt ). If someone entered
words = ["CS61A"] , startYear = 2010 , endYear = 2020 , and k = 4 , you should receive
"[CS170, CS61A, CS61B, CS61C]" . This frequency-EECS.csv is a bit different from the
previous one since it has values with the same frequencies. We highly recommend you to take
a look at frequency-EECS.csv . Also, while you are designing your implementation, bear this in
mind that we can give you words with the same frequencies.
Project 2C: Ngordnet Enhancements - EECS Course Guide Edited 1 month ago
If a word never occurs in the time frame specified, i.e. the count is zero, it should not be
returned. In other words, if k > 0 , we should not show any words that do not appear in the
ngrams dataset.
If there are no words that have non-zero counts, you should return an empty list, i.e. [] .
If there are fewer than k words with non-zero counts, return only those words. For example if
you enter the word "potato" and enter k = 15 , but only 7 hyponyms of "potato" have
non-zero counts, you?d return only 7 words.
This task will be a little trickier since you?ll need to figure out how to pass information around
so that the HyponymsHandler knows how to access a useful NGramMap .
TASK
 Project 2C: Ngordnet Enhancements | CS 61B Spring 2024
 5/11
Modify your HyponymsHandler and the rest of your implementation to deal with the k !=
0 case.
WARNING
EECS-course guide is not available on the interactive web staff solution so it won?t return
anything if you give the input CS61A .
DANGER
DO NOT MAKE A STATIC NGRAMMAP FOR THIS TASK! It might be tempting to simply
make some sort of public static NGramMap that can be accessed from anywhere in your
code. This is called a "global variable".
We strongly discourage this way of thinking about programming, and instead suggest that
you should be passing an NGramMap to either constructors or methods. We?ll come back
to talking about this during the software engineering lectures.
Until you use the autograder, you?ll need to construct your own test cases. We provided
one in the previous section: words = ["food", "cake"] , startYear = 1950 , endYear =
19** , k = 5 .
When constructing your own test cases, consider making your own input files. Using the
large input files we provide is extremely tedious.
Up until now, we have only been concerned with finding the common hyponyms of words. For
the last part of this project, your task is to find the common ancestors.
That is, given a set of words, what words contain the given set of words as hyponyms?
For example, consider synsets16.txt and hyponyms16.txt from 2B:
Tips
?
?
Finding Common Ancestors
 Project 2C: Ngordnet Enhancements | CS 61B Spring 2024
 6/11
If we find the ancestors of "adjustment" , we should get "[adjustment, alteration, event,
happening, modification, natural_event, occurrence, occurrent]" , as shown in the
graph below.
This also should apply to words in multiple contexts, as seen with "change" :
 Project 2C: Ngordnet Enhancements | CS 61B Spring 2024
 7/11
The ancestors of "change" should be "[act, action, alteration, change, event,
happening, human_action, human_activity, modification, natural_event, occurrence,
occurrent]" .
We can also ask for the common ancestors of sets of words, which can reveal some neat
relationships!
Here, we find the common ancestors of the words = ["change", "adjustment"] . The result
should be "[alteration, event, happening, modification, natural_event, occurrence,
 Project 2C: Ngordnet Enhancements | CS 61B Spring 2024
 8/11
occurrent]" , which are all the words in the graph that contain both "change" and
"adjustment" as hyponyms. Note that "alteration" and "modification" are also included
in the result, contrary to what you might expect, as explained below.
Note: Be sure to take a word intersection rather than a node intersection just as in 2B, so the
common ancestors of ["test_subject", "math"] in the following graph should return "
[subject]" , as "subject" contains both "test_subject" and "math" as hyponyms, even
though "test_subject" and "math" are not directly connected in the graph.
We may also ask for common ancestors of three or more words.
Note that the outputs are in alphabetical order, and keep in mind that k != 0 can also apply
to this task.
Your query handling needs to remain efficient for common ancestors (i.e., the timeouts applied
to 2B still apply here). This means that going through every single word and checking if it
contains all the words in the query as hyponyms will be too slow on the larger datasets!
You will need to modify your HyponymsHandler class to account for the type of query, i.e.,
hyponyms or common ancestors. This should look similar to how you found startYear ,
endYear , or k , and this will be specified for you with NgordnetQueryType.HYPONYMS or
NgordnetQueryType.ANCESTORS , respectively.
TASK
Modify your HyponymsHandler and the rest of your implementation to handle common
ancestor queries in addition to hyponym queries.
As mentioned before, you should not need to copy-paste your code or do anything too drastic
to handle this task. Consider how you can use the same data structures and methods from
before to solve this problem, perhaps with a few tweaks.
NgordnetQueryType
Design Tips
 Project 2C: Ngordnet Enhancements | CS 61B Spring 2024
 9/11
Helper methods are your friends! If you find yourself writing similar code more than once,
consider making a helper method that you can call from both places that does the common
work for you.
For Project 2C, the only required deliverable is the HyponymsHandler.java file, in addition to
any helper classes. However, we will not be directly grading these classes, since they can vary
from student to student.
Project 2B/C: Checkpoint: 5 points - Due March 15th
Project 2C Coding: 25 points - Due April 1st
HyponymsHandler popularity-hardcoded: 20%, k != 0
HyponymsHandler popularity-randomized: 30%, k != 0
HyponymsHandler common-ancestors: 50%
In addition to Project 2C, you will also have to turn in your design document. This will be worth
5 points and it is due March 15th. The design document?s main purpose is to serve as a
foundation for your project. It is important to think and ideate before coding. What we are
looking for in the design document:
Identify the data structures we have learned in the class that you will be using in your
implementation.
Pseudocode / general overview of your algorithm for your implementation.
Your design document should be around 1 - 2 pages long. Design document will be mainly
graded on effort, thought and completion.
Please make a copy of this template and submit to Gradescope.
Don?t worry if you decide to change your design document after. You are free to do so! We
want you to think about the implementation before coding therefore we require you to submit
your design as the part of the project.
The token limiting policy for this project will be as follows: You will start with 8 tokens, each of
which has a 24-hour refresh time.
We?ve provided you with two short unit test files for this project in the proj2c/tests
directory:
TestOneWordKNot0Hyponyms.java
Deliverables and Scoring

 Project 2C: Ngordnet Enhancements | CS 61B Spring 2024
 10/11
TestCommonAncestors.java
These test files are not comprehensive; in fact, they each only contain one sanity check
test. You should fill each file with more unit tests, and also use them as a template to create
two new test files for the respective cases.
If you need help figuring out what the expected outputs of your tests should be, you should
use the two tools that we linked in the Getting Started section.
Use the small files while testing! This decreases the startup time to run Main.java and
makes it easier to reason about the code. If you?re running Main.java , these files are set in
the first few lines of the main method. For unit tests, the file names are passed into the
getHyponymsHandler method.
You can run Main.java with the debugger to debug different inputs quickly. After clicking
the “Hyponyms” button, your code will execute with the debugger - breakpoints will be
triggered, you can use the variables window, etc.
There are a lot of moving parts to this project. Don?t start by debugging line-by-line.
Instead, narrow down which function/region of your code is not working correctly then
search more closely in those lines.
Check the FAQ for common issues and questions.
Throughout this assignment, we?ve had you use your front end to test your code. Our grader is
not sophisticated enough to pretend to be a web browser and call your code. Instead, we?ll
need you to provide a method in the proj2c_testing.AutograderBuddy class that provides a
handler that can deal with hyponyms requests.
When you ran git pull skeleton main at the start of this spec, you should have received a
file called AutograderBuddy.java
Just like 2B, open AutograderBuddy.java and fill in the getHyponymsHandler method such
that it returns a HyponymsHandler that uses the four given files. Your code here will probably
be similar to your code in Main.java .
Now that you?ve created proj2c.testing.AutograderBuddy , you can submit to the
autograder. If you fail any tests, you should be able to replicate them locally as JUnit tests by
building on the test files above. If any additional datafiles are needed, they will be added to this
section as links.

Submitting Your Code
 Project 2C: Ngordnet Enhancements | CS 61B Spring 2024
 11/11
If you?d like to go above and beyond in this project (and even explore some front-end
development), read through the Optional Features spec!
The WordNet part of this assignment is loosely adapted from Alina Ene and Kevin Wayne?s
Wordnet assignment at Princeton University.
Optional Extra Features
Acknowledgements

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp















 

掃一掃在手機打開當前頁
  • 上一篇:日本工作簽證去菲律賓免簽嗎 免簽條件總結
  • 下一篇:代做FINT2100、代寫Java/Python程序設計
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                中文在线免费一区三区高中清不卡| 亚洲国产一区二区视频| 一区二区三区自拍| 色综合久久天天| 亚洲同性同志一二三专区| 色综合一个色综合亚洲| 亚洲成人免费看| 日韩亚洲欧美一区二区三区| 久久草av在线| 中文字幕一区二区三区在线不卡| 色综合 综合色| 美女精品一区二区| 中文字幕一区二区不卡| 欧美日韩中文字幕一区| 国产一区二区在线看| 亚洲精品乱码久久久久久久久 | 不卡在线视频中文字幕| 亚洲免费资源在线播放| 欧美电视剧免费观看| 成人在线一区二区三区| 午夜婷婷国产麻豆精品| 久久久精品中文字幕麻豆发布| 91免费看`日韩一区二区| 久久97超碰国产精品超碰| 有码一区二区三区| 久久精品视频免费| 欧美一区二区三区四区在线观看 | 国产69精品一区二区亚洲孕妇| 亚洲免费观看高清完整版在线| 日韩一二三区不卡| 欧美综合欧美视频| 国产精品123| 日本中文在线一区| 亚洲第一狼人社区| 亚洲乱码中文字幕综合| 久久精品亚洲精品国产欧美kt∨| 在线成人午夜影院| 欧美在线视频日韩| 91猫先生在线| 成人永久免费视频| 国产精品一二二区| 丝袜亚洲另类欧美| 爽爽淫人综合网网站| 亚洲黄色av一区| 亚洲女同一区二区| 成人免费在线视频| 国产日韩一级二级三级| 久久精品欧美日韩| 精品粉嫩超白一线天av| 欧美videossexotv100| 欧美精品三级在线观看| 欧美性色欧美a在线播放| 成人av资源网站| 99久久国产综合色|国产精品| 粉嫩嫩av羞羞动漫久久久 | 欧美电影一区二区三区| 欧美日韩在线播放| 欧美丰满一区二区免费视频 | 亚洲电影在线免费观看| 亚洲国产日韩综合久久精品| 亚洲超碰精品一区二区| 同产精品九九九| 精品写真视频在线观看| 国产精品456露脸| 成人18视频日本| 色偷偷88欧美精品久久久| 在线国产电影不卡| 欧美视频在线一区二区三区| 欧美一区二区三区视频| 日韩欧美在线不卡| 中文字幕高清不卡| 亚洲综合一二三区| 偷拍日韩校园综合在线| 久久97超碰国产精品超碰| 国产伦理精品不卡| 91毛片在线观看| 91麻豆精品国产无毒不卡在线观看| 日韩一区二区三区免费看| 日韩精品一区二区三区视频| 国产日韩一级二级三级| 亚洲人成在线播放网站岛国| 天天免费综合色| 国产精品一区二区三区四区| 色综合久久久久综合| 日韩视频一区二区三区| 国产精品乱人伦一区二区| 亚洲妇女屁股眼交7| 国内精品第一页| 欧美丝袜自拍制服另类| 国产校园另类小说区| 夜夜嗨av一区二区三区四季av| 老司机午夜精品| 91久久精品日日躁夜夜躁欧美| 538在线一区二区精品国产| 国产精品视频线看| 久久99国产精品免费| 色噜噜狠狠色综合欧洲selulu | 日韩欧美一区二区在线视频| 国产欧美日韩视频在线观看| 日本网站在线观看一区二区三区| 成人午夜免费av| 欧美大白屁股肥臀xxxxxx| 国产精品不卡在线| 国产成人av电影在线播放| 日韩欧美中文字幕公布| 亚洲图片另类小说| 国产精品亚洲人在线观看| 在线91免费看| 亚洲欧美日韩国产一区二区三区 | 欧美夫妻性生活| 亚洲免费观看高清在线观看| 国产一区在线精品| 91精品国产欧美一区二区18| 亚洲欧美色一区| 成人高清在线视频| 亚洲国产精品ⅴa在线观看| 九一九一国产精品| 欧美一区二区三区男人的天堂| 一区二区三区四区高清精品免费观看 | 国产精品女同一区二区三区| 麻豆精品视频在线观看视频| 欧美精品成人一区二区三区四区| 亚洲精品午夜久久久| av不卡免费电影| 悠悠色在线精品| 91在线精品一区二区| 136国产福利精品导航| 成人av网址在线| **欧美大码日韩| 日本精品一区二区三区四区的功能| 亚洲三级在线看| 欧洲精品在线观看| 日韩成人一级大片| 欧美精品一区视频| 成人美女视频在线看| 成人免费在线播放视频| 91成人免费在线视频| 亚洲成人免费电影| 欧美成人一级视频| 成人毛片老司机大片| 亚洲色图在线看| 欧美日韩亚洲国产综合| 久久精品99国产国产精| 久久久国产精品午夜一区ai换脸| 国产成人精品免费视频网站| 中文字幕一区日韩精品欧美| 欧美这里有精品| 久久精品av麻豆的观看方式| 中文字幕av一区二区三区高| 一本高清dvd不卡在线观看 | 肉丝袜脚交视频一区二区| 精品少妇一区二区三区日产乱码| 国产精品自拍网站| 亚洲激情中文1区| 日韩一二三区不卡| jizzjizzjizz欧美| 日本美女一区二区三区视频| 久久在线免费观看| 色哟哟一区二区| 狠狠色伊人亚洲综合成人| 亚洲精品欧美专区| 久久久www免费人成精品| 91久久精品网| 国产成人一级电影| 日本欧美韩国一区三区| 中文字幕一区二区日韩精品绯色| 在线电影院国产精品| av电影在线观看一区| 麻豆精品一二三| 亚洲激情图片一区| 国产欧美一区二区在线| 91精品国产全国免费观看| 色综合中文字幕| 国产高清在线观看免费不卡| 日韩成人一级大片| 亚洲综合久久av| 久久久精品免费网站| 欧美日韩黄色影视| av成人动漫在线观看| 国产精品一区二区久久精品爱涩 | 精品一区二区三区在线视频| 亚洲午夜激情网页| 亚洲乱码国产乱码精品精小说| 久久精品网站免费观看| 日韩午夜电影av| 欧美一区二区三区思思人| 日本黄色一区二区| 91在线免费播放| av亚洲精华国产精华精| 国产精品一级片| 国产精品中文字幕一区二区三区| 人妖欧美一区二区| 香港成人在线视频| 亚洲一二三专区| 亚洲综合色丁香婷婷六月图片| 国产精品不卡一区| 自拍偷自拍亚洲精品播放| 亚洲天堂久久久久久久| 国产精品久久久久久一区二区三区| 国产日韩在线不卡|