CS代写 IFN647 – Assignment 2 Requirements Weighting: 35% of the assessment for IFN – cscodehelp代写

IFN647 – Assignment 2 Requirements Weighting: 35% of the assessment for IFN647
Deliverable Items
1. A final report in PDF or word file, which includes
• Statement of completeness and your name(s) and student ID(s) in a cover

Copyright By cscodehelp代写 加微信 cscodehelp

• Your solution for all steps (See more details in the “Requirements for each
step” session).
• User manual section describing the structure of the data folder setup,
information on “importing packages” and how to execute Python code in
Terminal, IDLE or PyCharm; and
• An appendix listing the top 10 documents for all topics and all models.
2. Your source code for all steps, containing all .py files (using a zip file “code.zip” to put them together) necessary to run the solution and perform the evaluation (source code only, no executables); and
3. A poster and demo to your tutor during your week 13 workshop time.
Please zip all files (the final report, code, and poster) into a zip file as your “studentID_Asm2.zip” and submit it through the Blackboard (a single submission only for a group) before the due date.
Please do not include the dataset folder generated by “DataCollection.zip” or “RelevanceFeedback.zip” in your submission.
The following are the frameworks/libraries that you can used for assignment 2: (a) sk-learn
(c) pandas
(e) Matplotlib
If you want to use another package or library, you need to get your tutor’s approval. Due date of Blackboard Submission: Sunday week 13 (12th June 2022)
Group: You are required to work on this assignment in a group of three people.

Due to the difficulty of automatically obtaining user information requirements, most search systems only use queries (or topics) instead of user information requirements. The first reason is that users may not know how to represent the topics they are interested in. The second reason is that users may not want to spend a lot of effort mining relevant documents from the hundreds of thousands of candidates provided by the system.
This unit discusses several ways to extend query-based methods, such as pseudo-relevant feedback, query expansion or hybrid methods. In this assignment, for a given data collection (including 50 datasets), you need to discover a good information filtering model that recommends relevant documents to users on all 50 topics, where documents in each dataset are collected for a corresponding topic. The methodology you will use for this assignment includes the following steps:
• Step 1 – Design an IR-based baseline model (BM_IR) that ranks documents in each dataset using the corresponding queries for all 50 datasets.
• Step 2 – Based on the knowledge you gained from this unit, design two different models to rank documents in each dataset using corresponding queries from all 50 datasets. You can call them Model_1 and Model_2, respectively.
• Step 3 – Use python to implement three models: BM_IR, Model_1 and Model_2, and test them on the given data collection of 50 topics (50 datasets) and print out the top 10 documents for each dataset (put the output in the appendix of your final report).
• Step 4 – Choose three effectiveness measures to display testing results against the selected effectiveness measures in tables or graphs.
• Step 5 – Recommend the best model based on significance test and your analysis. Data Collection
It is a subset of RCV1 data collection. It is only for IFN647 students who will be supervised by Prof. Li Yuefeng. Please do not release this data collection to others.
DataCollection.zip file – It includes 50 Datasets (folders “dataset101” to “dataset150”) for topic R101 to topic R150.
“Topics.txt” file – It contains definitions for 50 topics (numbered from R101 to R150) for 50 datasets in the data collection, where each element () defines a topic, including topic number (), title (), description (<desc>) and narrative (<narr>).<br /> Example of topic R102 – “Convicts, repeat offenders” is defined as follows: <top><br /> <num> Number: R102 <title>Convicts, repeat offenders<br /> <desc> Description:<br /> Search for information pertaining to crimes committed by people who have been previously convicted and later released or paroled from prison.<br /> <narr> Narrative:</p> <p>Relevant documents are those which cite actual crimes committed by “repeat offenders” or ex-convicts. Documents which only generally discuss the topic or efforts to prevent its occurrence with no specific cases cited are irrelevant.<br /> RelevanceFeedback.zip file – It includes relevance judgements (file “dataset101.txt” to file “dataset150.txt”) for all documents used in the 50 datasets, where “1” in the third column of each .txt file indicates that the document (the second column) is relevant to the corresponding topic (the first column); and “0” means the document is non-relevant.<br /> Requirements for each step<br /> Step 1: Design a BM25 based IR model as a baseline model (BM_IR). You need to use the following equation<br /> for all topics R101 to R150, where Q is the title of a topic.<br /> Formally describe your design for BM_IR in an algorithm to rank documents in each dataset using corresponding queries for all 50 datasets. You also need to determine the values for all parameters used in the above equation, and how to rank documents in each dataset.<br /> Step 2. Design two different models Model_1 and Model_2<br /> In this step, you can only use the 50 datasets (DataCollection.zip file) and topics (Topics.txt). You cannot use relevance judgements (RelevanceFeedback.zip). You may design IR-based models, pseudo relevance models or other hybrid methods.<br /> Write your design (or ideas) for the two models into two algorithms. Your approach should be generic that means it is feasible to be used for other topics. You also need to discuss the difference between three models.<br /> Step 3. Implement three models: BM_IR, Model_1 and Model_2<br /> Design python programs to implement these three models. You can use a .py file for each model. Discuss the data structures used to represent a single document and a set of documents for each model (you can use the same data structure for different models). You also need to test the three models on the given data collection of 50 datasets for the 50 topics and print out the top 10 documents for each dataset (in descending order). The output will be put in the appendix of the final report.<br /> Below is the output format for all 50 topics for the model BM_IR only.<br /> Topic R101: …<br /> Topic R102: 3</p> <p>DocID 73038 26061 65414 57914 58476 76635 12769 12767 25096 78836<br /> Topic R103 …<br /> Topic R150<br /> Weight 5.8987 4.2736 4.1414 3.9671 3.7084 3.5867 3.4341 3.3521 2.7646 2.6823<br /> Step 4. Display test results on effectiveness measures<br /> In this step, you need to use the Relevance Judgment (RelevanceFeedback.zip) to display the test results for the selected effectiveness metric.<br /> You need to choose three different effectiveness measures to evaluate the test results, such as top-10 precision, MAP, F1, or interpolation. Evaluation results can be summarized in tables or graphs (e.g., precision-recall curves). Below is an example summary table of F1 measure for the three models.<br /> Table 1. The performance of three models on F1 measure at position 25<br /> R101 R102 R103<br /> 0.2100 0.0320 0.0765<br /> 0.2200 0.0350 0.0765<br /> 0.2300 0.0370 0.0787<br /> ………… R150 … … …<br /> Step 5. Recommend the best model<br /> You need a significance test to compare models. You can choose a t-test to perform a significance test on the evaluation results you reported in step 4. You can compare models between BM_IR and Model_1, BM_IR and Model_2, and/or Model_1 and Model_2. Based on t-test results (p-value and t-statistic value), you can recommend the best model. You can perform the t-test using a single effectiveness measure or multiple measures. Generally, using more effectiveness measures provides stronger evidence against the null hypothesis.</p> <p>Note that if the t-test is unsatisfactory, you can use the evaluation results to refine your model. For example, you can adjust parameter settings or update your design.<br /> Please Note<br /> • Your programs should be well laid out, easy to read and well commented.<br /> • All items submitted should be clearly labelled with your name and student number.<br /> • Marks will be awarded for design (algorithms), programs (correctness, programming style,<br /> elegance, commenting) and evaluation results, according to the marking guide.<br /> • You will lose marks for missing or inaccurate statements of completeness or user manual,<br /> and for missing sections, files, or items.<br /> • Your results do not need to be exactly the same as the sample output.<br /> • We recommend that you use a fair workload distribution approach, such as one person per<br /> model, but the baseline model is simple, so the person responsible for the baseline may do<br /> more in the evaluation.<br /> • If your group has team conflict issues, your individual contributions will be assessed at the<br /> Week 13 workshop (you may be asked to do a peer review); otherwise, all group members<br /> will participate equally in this assessment project.<br /> • See the marking guide for more details.<br /> END OF ASSIGNMENT 2</p> <p>程序代写 <a href="https://cscodehelp.com/tag/代考/">CS代考</a> 加微信: cscodehelp QQ: 2235208643 Email: kyit630461@163.com</p> </div><!-- .entry-content --> <footer class="entry-meta entry-meta-footer"> <span class="cat-links cat-links-single">Posted in <a href="https://www.cscodehelp.com/category/oa%e4%bb%a3%e5%81%9a/" rel="category tag">OA代做</a>, <a href="https://www.cscodehelp.com/category/paper%e4%bb%a3%e5%86%99/" rel="category tag">paper代写</a>, <a href="https://www.cscodehelp.com/category/python%e4%bb%a3%e5%86%99/" rel="category tag">Python代写</a>, <a href="https://www.cscodehelp.com/category/software-engineering/" rel="category tag">Software Engineering</a>, <a href="https://www.cscodehelp.com/category/%e5%b9%b3%e6%97%b6%e4%bd%9c%e4%b8%9a%e4%bb%a3%e5%86%99/" rel="category tag">平时作业代写</a></span><span class="tags-links tags-links-single">Tagged <a href="https://www.cscodehelp.com/tag/oa%e4%bb%a3%e5%81%9a/" rel="tag">OA代做</a>, <a href="https://www.cscodehelp.com/tag/paper/" rel="tag">paper</a>, <a href="https://www.cscodehelp.com/tag/%e9%9d%a2%e8%af%95%e4%bb%a3%e9%9d%a2/" rel="tag">面试代面</a></span> </footer><!-- .entry-meta --> </div><!-- .entry-data-wrapper --> </div><!-- .post-content-wrapper --> </article><!-- #post-## --> </div><!-- .post-wrapper-hentry --> <div class="entry-author"> <div class="author-avatar"> <img alt='' src='https://secure.gravatar.com/avatar/587d467738f02efc1f3ad41e6550ae64?s=80&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/587d467738f02efc1f3ad41e6550ae64?s=160&d=mm&r=g 2x' class='avatar avatar-80 photo' height='80' width='80' loading='lazy' decoding='async'/> </div><!-- .author-avatar --> <div class="author-heading"> <h2 class="author-title"> Published by <span class="author-name">admin</span> </h2> </div><!-- .author-heading --> <p class="author-bio"> <a class="author-link" href="https://www.cscodehelp.com/author/admin/" rel="author"> View all posts by admin </a> </p><!-- .author-bio --> </div><!-- .entry-auhtor --> <nav class="navigation post-navigation" aria-label="Posts"> <h2 class="screen-reader-text">Post navigation</h2> <div class="nav-links"><div class="nav-previous"><a href="https://www.cscodehelp.com/python%e4%bb%a3%e5%86%99/%e4%bb%a3%e5%86%99%e4%bb%a3%e8%80%83-review-and-questions-for-week-6/" rel="prev"><span class="meta-nav">Prev</span> <span class="post-title">代写代考 Review and Questions for Week 6 – cscodehelp代写</span></a></div><div class="nav-next"><a href="https://www.cscodehelp.com/python%e4%bb%a3%e5%86%99/cs%e4%bb%a3%e5%86%99-ict373-software-architectures/" rel="next"><span class="meta-nav">Next</span> <span class="post-title">CS代写 ICT373: Software Architectures – cscodehelp代写</span></a></div></div> </nav> <div id="comments" class="comments-area"> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/python%e4%bb%a3%e5%86%99/cs%e4%bb%a3%e5%86%99-ifn647-assignment-2-requirements-weighting-35-of-the-assessment-for-ifn/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://www.cscodehelp.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><p class="comment-form-comment"><label for="comment">Comment <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p><p class="comment-form-author"><label for="author">Name <span class="required">*</span></label> <input id="author" name="author" type="text" value="" size="30" maxlength="245" autocomplete="name" required /></p> <p class="comment-form-email"><label for="email">Email <span class="required">*</span></label> <input id="email" name="email" type="email" value="" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required /></p> <p class="comment-form-url"><label for="url">Website</label> <input id="url" name="url" type="url" value="" size="30" maxlength="200" autocomplete="url" /></p> <p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" /> <label for="wp-comment-cookies-consent">Save my name, email, and website in this browser for the next time I comment.</label></p> <p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='25504' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </p></form> </div><!-- #respond --> </div><!-- #comments --> </div><!-- .post-wrapper --> </main><!-- #main --> </div><!-- #primary --> <div id="site-sidebar" class="sidebar-area col-16 col-sm-16 col-md-16 col-lg-5 col-xl-5 col-xxl-5 order-lg-1 order-xl-1 order-xxl-1"> <div id="secondary" class="sidebar widget-area sidebar-widget-area" role="complementary"> <aside id="text-7" class="widget widget_text"><h2 class="widget-title">联系我</h2> <div class="textwidget"><p><code></code></p> <ul> <li><strong>网站: </strong><a href="https://www.cscodehelp.com/">https://www.cscodehelp.com/</a></li> <li><strong>Email</strong>: kyit630461@outlook.com</li> <li><strong>QQ</strong>:2235208643<br /> <!-- /wp:list --> <!-- wp:image {"id":10250,"width":215,"height":401,"sizeSlug":"large"} --><!-- /wp:image --> <!-- wp:image {"id":44,"width":271,"height":307,"sizeSlug":"large"} --><!-- /wp:image --></li> <li><strong>Wechat:</strong> aplg6666</li> </ul> <figure class="wp-block-image size-large is-resized"><img decoding="async" loading="lazy" class="alignnone size-medium wp-image-26377" src="https://www.cscodehelp.com/wp-content/uploads/2023/05/WechatIMG181-202x300.png" alt="" width="202" height="300" srcset="https://www.cscodehelp.com/wp-content/uploads/2023/05/WechatIMG181-202x300.png 202w, https://www.cscodehelp.com/wp-content/uploads/2023/05/WechatIMG181-690x1024.png 690w, https://www.cscodehelp.com/wp-content/uploads/2023/05/WechatIMG181-768x1140.png 768w, https://www.cscodehelp.com/wp-content/uploads/2023/05/WechatIMG181.png 802w" sizes="(max-width: 202px) 100vw, 202px" /></figure> <p>为了保证我尽快联系和评估您的面试,作业, 请注明您的面试,作业具体要求、微信号和年级</p> <p>Notice: 一般在美东时间 11:00 AM – 17:00之间可能回复稍慢,望谅解</p> <p><!-- wp:paragraph {"textColor":"vivid-red","fontSize":"medium"} --></p> <p class="has-text-color has-medium-font-size has-vivid-red-color"><strong>100% Plagiarism Free 代码保证唯一</strong></p> <p><!-- /wp:paragraph --> <!-- wp:paragraph {"textColor":"vivid-red","fontSize":"medium"} --></p> <p class="has-text-color has-medium-font-size has-vivid-red-color"><strong>100% Confidentiality 完全保密</strong></p> <p><!-- /wp:paragraph --> <!-- wp:paragraph {"textColor":"vivid-red","fontSize":"medium"} --></p> <p class="has-text-color has-medium-font-size has-vivid-red-color"><strong>100% Quality Assurance 保证质量</strong></p> <p><!-- /wp:paragraph --></p> </div> </aside><aside id="text-2" class="widget widget_text"><h2 class="widget-title">请大家注意</h2> <div class="textwidget"><p>我从18年开始做代面,12年开始做代写,跌跌撞撞走来。若干网站内容都抄袭,请大家提高警惕。</p> </div> </aside><aside id="text-5" class="widget widget_text"><h2 class="widget-title">友情提示 </h2> <div class="textwidget"><p>我的Google排名是靠质量和口碑做起来的, 和带Ad标识的花钱排名不一样。codehelp的排名从来不需要通过付钱刷存在感</p> </div> </aside><aside id="categories-3" class="widget widget_categories"><h2 class="widget-title">成功案例分类</h2><form action="https://www.cscodehelp.com" method="get"><label class="screen-reader-text" for="cat">成功案例分类</label><select name='cat' id='cat' class='postform'> <option value='-1'>Select Category</option> <option class="level-0" value="212">AI</option> <option class="level-0" value="214">bigdata</option> <option class="level-0" value="1">C/C++ 代写</option> <option class="level-0" value="175">Compilers: Principles</option> <option class="level-0" value="253">computer architecture</option> <option class="level-0" value="251">computer graphics</option> <option class="level-0" value="133">computer network</option> <option class="level-0" value="54">computer system计算机系统</option> <option class="level-0" value="259">computer theory</option> <option class="level-0" value="32">Data Analysis/数据分析</option> <option class="level-0" value="33">Data Science</option> <option class="level-0" value="208">data visualization</option> <option class="level-0" value="236">DATABASE</option> <option class="level-0" value="165">Distributed System 分布式系统</option> <option class="level-0" value="246">essay</option> <option class="level-0" value="217">genetic algorithm</option> <option class="level-0" value="68">Go语言程序设计</option> <option class="level-0" value="162">Hadoop</option> <option class="level-0" value="226">Haskell</option> <option class="level-0" value="229">hive</option> <option class="level-0" value="147">IOS开发</option> <option class="level-0" value="40">JAVA</option> <option class="level-0" value="80">JavaScript</option> <option class="level-0" value="86">JS</option> <option class="level-0" value="75">Junit</option> <option class="level-0" value="186">kaggle</option> <option class="level-0" value="181">Machine Learning</option> <option class="level-0" value="79">matlab</option> <option class="level-0" value="119">matlab代写</option> <option class="level-0" value="228">mobile system</option> <option class="level-0" value="98">NLP</option> <option class="level-0" value="273">OA代做</option> <option class="level-0" value="39">OOP编程</option> <option class="level-0" value="237">ORACLE SQL</option> <option class="level-0" value="239">paper代写</option> <option class="level-0" value="280">powcoder</option> <option class="level-0" value="142">Prolog</option> <option class="level-0" value="164">Python</option> <option class="level-0" value="23">Python代写</option> <option class="level-1" value="24">   Tensorflow代写</option> <option class="level-0" value="203">R语言代写</option> <option class="level-0" value="177">Scientific Computing Language</option> <option class="level-0" value="29">Software Engineering</option> <option class="level-0" value="163">Spark</option> <option class="level-0" value="60">SPARK代写</option> <option class="level-0" value="94">sql代写</option> <option class="level-0" value="205">Statistical Analysis</option> <option class="level-0" value="196">Stochastic Analysis in Finance</option> <option class="level-0" value="193">Stylish</option> <option class="level-0" value="148">Swift开发</option> <option class="level-0" value="78">web</option> <option class="level-0" value="85">WEBGL</option> <option class="level-0" value="113">人工智能</option> <option class="level-0" value="67">分布式系统</option> <option class="level-0" value="93">加拿大代写</option> <option class="level-0" value="128">动态规划DP dynamic programming</option> <option class="level-0" value="106">商业分析</option> <option class="level-0" value="192">图像处理</option> <option class="level-0" value="107">图算法</option> <option class="level-0" value="114">图算法graph</option> <option class="level-0" value="198">工程</option> <option class="level-0" value="36">平时作业代写</option> <option class="level-0" value="188">强化学习|reinforcement learning</option> <option class="level-0" value="61">推荐系统</option> <option class="level-0" value="48">数据库</option> <option class="level-0" value="59">数据挖掘</option> <option class="level-0" value="47">数据结构|Data Structure</option> <option class="level-0" value="185">文本分类</option> <option class="level-0" value="77">机器学习</option> <option class="level-0" value="171">汇编</option> <option class="level-0" value="219">深度学习</option> <option class="level-0" value="69">澳洲程序设计</option> <option class="level-0" value="123">生物信息工程</option> <option class="level-0" value="26">科研代码代写</option> <option class="level-0" value="159">移动通信</option> <option class="level-0" value="127">算法algorithm</option> <option class="level-0" value="204">统计分析</option> <option class="level-0" value="170">编译原理</option> <option class="level-0" value="49">网络安全</option> <option class="level-0" value="99">自然语言处理</option> <option class="level-0" value="254">计算机体系结构</option> <option class="level-0" value="250">计算机图形学</option> <option class="level-0" value="263">计算机编译原理</option> <option class="level-0" value="132">计算机网络</option> <option class="level-0" value="53">计算机网络代写</option> <option class="level-0" value="28">软件工程代码代写</option> <option class="level-0" value="120">边缘计算</option> <option class="level-0" value="158">通信工程</option> <option class="level-0" value="104">通信编程</option> <option class="level-0" value="218">遗传算法</option> <option class="level-0" value="108">量化代写</option> <option class="level-0" value="197">随机过程</option> <option class="level-0" value="274">面试</option> <option class="level-0" value="272">面试代面</option> <option class="level-0" value="279">骗子曝光</option> </select> </form> <script type="text/javascript"> /* <![CDATA[ */ (function() { var dropdown = document.getElementById( "cat" ); function onCatChange() { if ( dropdown.options[ dropdown.selectedIndex ].value > 0 ) { dropdown.parentNode.submit(); } } dropdown.onchange = onCatChange; })(); /* ]]> */ </script> </aside> <aside id="recent-posts-3" class="widget widget_recent_entries"> <h2 class="widget-title">成功案例</h2> <ul> <li> <a href="https://www.cscodehelp.com/c-c-%e4%bb%a3%e5%86%99/%e4%ba%9a%e9%ba%bboa-%e9%9d%a2%e7%bb%8f%e4%ba%9a%e9%a9%ac%e9%80%8a%e9%9d%a2%e7%bb%8famazon-oaoa%e4%ba%9a%e9%ba%bb%e7%bd%91%e7%94%b3amazon-%e4%bb%a3%e9%9d%a2amazon-oa%e4%bb%a3%e5%86%99/">亚麻OA 面经|亚马逊面经|AMAZON OA|OA亚麻网申|AMAZON 代面|AMAZON OA代写</a> </li> <li> <a href="https://www.cscodehelp.com/c-c-%e4%bb%a3%e5%86%99/breaking-the-mold-unconventional-strategies-for-accelerating-your-career-path/">Breaking the Mold: Unconventional Strategies for Accelerating Your Career Path</a> </li> <li> <a href="https://www.cscodehelp.com/c-c-%e4%bb%a3%e5%86%99/ng-%e9%9d%a2%e8%af%95-system-design%ef%bc%8c%e6%b1%97%e6%b5%81%e6%b5%83%e8%83%8c%e4%ba%86/">NG 面试 System Design,汗流浃背了</a> </li> </ul> </aside><aside id="archives-6" class="widget widget_archive"><h2 class="widget-title">日期分类</h2> <ul> <li><a href='https://www.cscodehelp.com/2024/03/'>March 2024</a></li> <li><a href='https://www.cscodehelp.com/2024/02/'>February 2024</a></li> <li><a href='https://www.cscodehelp.com/2023/11/'>November 2023</a></li> <li><a href='https://www.cscodehelp.com/2023/06/'>June 2023</a></li> <li><a href='https://www.cscodehelp.com/2022/12/'>December 2022</a></li> <li><a href='https://www.cscodehelp.com/2022/11/'>November 2022</a></li> <li><a href='https://www.cscodehelp.com/2022/08/'>August 2022</a></li> <li><a href='https://www.cscodehelp.com/2022/07/'>July 2022</a></li> <li><a href='https://www.cscodehelp.com/2022/06/'>June 2022</a></li> <li><a href='https://www.cscodehelp.com/2022/05/'>May 2022</a></li> <li><a href='https://www.cscodehelp.com/2022/04/'>April 2022</a></li> <li><a href='https://www.cscodehelp.com/2022/03/'>March 2022</a></li> <li><a href='https://www.cscodehelp.com/2022/02/'>February 2022</a></li> <li><a href='https://www.cscodehelp.com/2022/01/'>January 2022</a></li> <li><a href='https://www.cscodehelp.com/2021/12/'>December 2021</a></li> <li><a href='https://www.cscodehelp.com/2021/04/'>April 2021</a></li> <li><a href='https://www.cscodehelp.com/2021/03/'>March 2021</a></li> <li><a href='https://www.cscodehelp.com/2021/02/'>February 2021</a></li> <li><a href='https://www.cscodehelp.com/2021/01/'>January 2021</a></li> <li><a href='https://www.cscodehelp.com/2020/06/'>June 2020</a></li> <li><a href='https://www.cscodehelp.com/2020/05/'>May 2020</a></li> <li><a href='https://www.cscodehelp.com/2020/04/'>April 2020</a></li> <li><a href='https://www.cscodehelp.com/2020/03/'>March 2020</a></li> <li><a href='https://www.cscodehelp.com/2020/02/'>February 2020</a></li> <li><a href='https://www.cscodehelp.com/2019/12/'>December 2019</a></li> <li><a href='https://www.cscodehelp.com/2019/06/'>June 2019</a></li> </ul> </aside><aside id="text-3" class="widget widget_text"><h2 class="widget-title">口碑</h2> <div class="textwidget"><p>我们的<strong>Google</strong>排名是靠质量和口碑做起来的, 和带Ad标识的花钱排名不一样。codehelp的排名从来不需要通过付钱刷存在感</p> </div> </aside> </div><!-- .sidebar --> </div><!-- .col-* columns of main sidebar --> </div><!-- .row --> </div><!-- .container --> </div><!-- .site-content-inside --> </div><!-- #content --> <footer id="colophon" class="site-footer"> <div class="site-info"> <div class="site-info-inside"> <div class="container"> <div class="row"> <div class="col"> <div class="credits-wrapper"> <div class="credits credits-blog">cscodehelp™ 博士 课程作业面试辅导 CS 计算机科学 | EE 电气工程 | STATICS 统计 | FINANCE 金融 | 程序代做 | 工作代做 | 面试代面 | CS代做</div><div class="credits credits-designer">Amphibious Theme by <a href="https://templatepocket.com" title="TemplatePocket">TemplatePocket</a> <span>⋅</span> Powered by <a href="https://wordpress.org" title="WordPress">WordPress</a></div> </div><!-- .credits --> </div><!-- .col --> </div><!-- .row --> </div><!-- .container --> </div><!-- .site-info-inside --> </div><!-- .site-info --> </footer><!-- #colophon --> </div><!-- #page .site-wrapper --> <div class="overlay-effect"></div><!-- .overlay-effect --> <script type='text/javascript' src='https://www.cscodehelp.com/wp-content/themes/amphibious/js/enquire.js?ver=2.1.6' id='enquire-js'></script> <script type='text/javascript' src='https://www.cscodehelp.com/wp-content/themes/amphibious/js/fitvids.js?ver=1.1' id='fitvids-js'></script> <script type='text/javascript' src='https://www.cscodehelp.com/wp-content/themes/amphibious/js/hover-intent.js?ver=r7' id='hover-intent-js'></script> <script type='text/javascript' src='https://www.cscodehelp.com/wp-content/themes/amphibious/js/superfish.js?ver=1.7.10' id='superfish-js'></script> <script type='text/javascript' src='https://www.cscodehelp.com/wp-includes/js/comment-reply.min.js?ver=73f13a27fe977958cf7880e6b25eac33' id='comment-reply-js'></script> <script type='text/javascript' src='https://www.cscodehelp.com/wp-content/themes/amphibious/js/custom.js?ver=1.0' id='amphibious-custom-js'></script> </body> </html>