CS61C Classify Project 2

Project 2: CS61Classify Part A Deadline: Thursday, February 16, 11:59:59 PM PT Part B Deadline: Thursday, March 2, 11:59:59 PM PT In this project, you will write RISC-V assembly code to classify handwritten digits with a simple machine learning algorithm. The goal of this project is to familiarize you with RISC-V, specifically calling convention, calling […]

CS61C Classify Project 2 Read More »

C88C Homework 6 Spring 2023

Homework 6 | C88C Spring 2023 Homework 6 Due at 11:59:59 pm on Thursday, 3/9/2023. Instructions Download hw06.zip. Inside the archive, you will find starter files for the questions in this homework, along with a copy of the OK autograder. Submission: When you are done, submit with python3 ok –submit. You may submit more than once

C88C Homework 6 Spring 2023 Read More »

C88C hw06 Python Code

###################### # Required Questions # ###################### # Probably a die-re situation from operator import add, mul def reduce(reducer, seq, start): “””Reduce a sequence under a two-argument function starting from a start value. >>> def add(x, y): … return x + y >>> def mul(x, y): … return x*y >>> reduce(add, [1,2,3,4], 0) >>> reduce(mul, [1,2,3,4],

C88C hw06 Python Code Read More »

CS 61B Project 2A NGordnet NGrams

Project 2A: NGordnet (NGrams) CS 61B Spring 2023 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 2A is located Introduction # In this project, we will build a browser based tool for exploring the history

CS 61B Project 2A NGordnet NGrams Read More »

CS61B NGramMap

package ngordnet.ngrams; import java.util.Collection; * An object that provides utility methods for making queries on the * Google NGrams dataset (or a subset thereof). * An NGramMap stores pertinent data from a “words file” and a “counts * file”. It is not a map in the strict sense, but it does provide additional * functionality.

CS61B NGramMap Read More »

Spark LSH Big Data Assignment 3

1. Overview of the Assignment Assignment 3 In Assignment 3, you will complete two tasks. The goal is to familiarize you with Locality Sensitive Hashing (LSH), and different types of collaborative-filtering recommendation systems. The dataset you are going to use is a subset from the Yelp dataset used in the previous assignments. 2. Assignment Requirements

Spark LSH Big Data Assignment 3 Read More »

CS 434 MP2

ECE/CS 434 MP2 Due on Monday Feb 27 11:59PM on Gradescope Objective¶ In this MP, you will: Implement DUET algorithm to separate a mixture of N voice signals from received from two microphones Problem Overview¶ Consider a problem of separating N sources ($S_1$, $S_2$, … $S_N$) from recordings on 2 microphones ($R_1$ and $R_2$). According

CS 434 MP2 Read More »