Answered step by step
Verified Expert Solution
Question
1 Approved Answer
2 Background Sentiment analysis, which is a powerful technique based on natural language processing, has a wide range of applications, including consumer reviews analysis, recommender
2 Background Sentiment analysis, which is a powerful technique based on natural language processing, has a wide range of applications, including consumer reviews analysis, recommender system, political campaigning, stock speculation, etc. A sentiment analysis model requires a large text corpus, which consists of classified articles grabbed from the internet using web crawlers. In the simplest scenario, a text corpus can be built by two components: a web crawler and a classifier. The crawler browses through web pages and grabs articles from websites. The grabbed articles are stored in a buffer, from which the classifier processes articles and classifies them. Considering the complexity of modern websites, it usually takes a long time for a crawler to locate and grab an article from the web page. So, the speed of crawlers is usually too slow for the classifier. Thus, multiple crawlers would be a better choice. 3 Components and Requirements You are required to design and implement three crawlers, a buffer and a classifier in C/C++ on Linux (other languages are not allowed). Mutual exclusion and synchronization must be done with mutex and semaphore provided in libraries and 3.1 crawler Each crawler thread is created to grab articles from websites and load them into the buffer. It keeps doing grabbing and loading job, which takes time interval_A, until the buffer is full. And then it starts waiting until the classifier deletes an article from the buffer. A function char* str_generator (void), is provided to generate articles for the crawler to grab and each article is represented by a string of 50 characters. 3.2 buffer The buffer structure is a first-in-first-out (FIFO) queue. It is used to store the grabbed articles from crawlers temporarily, until they are taken by the classifier. It can store up to 12 articles at the same time. You need to implement your own queue. You are not allowed to use standard c++ library (e.g., queue or other container provided by standard template library) or third-party libraries. 1 3.3 classifier A classifier thread is created to classify the articles grabbed by the crawlers in FIFO order. Specifically, there are two steps in the procedure: 1. Pre-processing: the classifier makes a copy of the article at the head of the buffer, changes all the uppercase letter ('A'-'Z') to lowercase letter ('a'-'Z') and deletes any symbol that is not a letter. 2. Classification: the classifier classifies the article into one of the 13 classes based on the first letter, x, of the processed article as follows. Class label = int(x -'a') %13 + 1 Next, an auto-increasing key starting from 1 will be given to the classified article. (So, the keys of classified articles are 1, 2, 3, ...). At last, the key, the class label and the original article, are stored to the text corpus in a text file. Then, the classifier deletes the classified article in the buffer. The whole procedure takes time of interval_B. 3.4 termination The articles are divided into 13 classes. Denote the number of articles in each class as C1, C2, ... C13, and p = min{ C1, C2, ... C13}. When p 25, the classifier notifies all crawlers to quit after finishing the current job at hand, and then the program terminates. 3.5 input arguments Your program has to accept the following two arguments in input order: interval_A, interval_B: integer, unit: microsecond. . 3.6 sample outputs The outputs of your program are: A table with multiple columns shown on the screen, each column shows the activities of a single thread in time order, and each row shows only one single activity of a thread. The text corpus, each line consists of a key, a class label and an article separated by a space. All activities that need to be recorded for each thread are listed below, together with their abbreviations. Crawler: start - crawler starts. grab - crawler starts to grab an article. f-grab - an article has been grabbed and loaded into the buffer. wait - crawler starts waiting for available space in the buffer. s-wait - crawler stops waiting. quit - crawler finished all job and about to quit. Classifier: start - classifier starts. clfy - classifier starts to classify an article. f-clfy - the article has been classified and deleted from the buffer. k-enough - k number of articles have been classified and the classifier notifies all threads to quit. n-stored a total n articles have been stored in the text corpus. quit - classifier finished all job and about to quit. Below are sample output of the table on the screen and the text corpus. For example, in the table, crawler1 started at t1, then, crawler2 started at t2 and grabbed at t3, and so on. crawler3 classifier crawleri start crawler2 f-grab wait f-clfy start grab clfy start grab Swait grab start grab f-grab wait f-grab f-grab f-clfy 95-enough clfy grab clfy Soweit quit f-grab grab sawait quit grab f-clfy clfy f-grab quit f-grab f-grab grab f-clfy clfy f-grab grab f-cify cify f-grab grab f-clfy clfy f-clfy clfy f-clfy clfy f-clfy cify f-clfy clfy f-clfy clfy fucify clfy f-clfy clfy f-clfy clfy f-clfy clfy f-clfy 106-store quit f-grab grab f-grab f-clfy clfy f-clfy clfy f-grab grab Beginning of the table End of the table 1 13 ZUPPAV; nHVY@a\kHko; awahkjtc4g6yT?6\=aR_gL5kt:f1xYN 2 11 xZLEDyvUNZjn;wTuJxrg'U3r4ss:dpYXN 73SSBWJ17BSCd=gE 3 1 *=4@NBE=1VL:qN]sz=QY5qk_n; 6RSOZLn] i4@OBO;K6jKD3pE 4 12 >;18>yL'bu>Yujg151pYPX@B][=nc13EYOR OF GOTEVO 5 8 Hf6u45Q@D10wSb:Xdc;YLO 57j[Jeoqm@NACUUSQM5EeY0000; 08jbnN?pzrX 11 1 NYfahrz]OVDQ;5z'zZa\Q39Ci>QGn4a5k5MJwrzovhVa[g?X81 12 4 QArg;D9@InRyYxK:OVUO=5n6=rrwAfBWJr)__]r>:11Z]w7y5ph5 15 6 59\AndDBiBEq3TEUVM9* *2HOKC<_bcncvisojlhgc ncoke>gkzu; 3WHD1?SU063x0;v 9NH[PUZHjuo_j 17 3 CV1]KTKMsot8@[J[M>4?v2r9JZINR=d402ZsGb23zxh wut)? 18 2 OxonamoG6_XOVZG?VVBUAOUEw_Jf1L?rhx?mDy3ztg^1W>[fox4IX 20 3 coxkAkx@GGD JO1ks;U[G_B4LERHr4[y^^mc>shA9=[bFZ>IJ9 21 13 mKFS=TFdYxZSWOYAB7xDdp: UU>NTa**9sVU5vD7vHs ]PM9Udhs text corpus 5 Helper Program and Hint 5.1 generator.cpp The function char* str_generator (void) is provided in the file generator.cpp. It returns a string (char array) of length 50. Use it by declaring a prototype in your code and compiling it along with your source code. 5.2 hint Multi-threading needs careful manipulation. A specious program may show correctness in several tests at the beginning, but collapses at the later tests. Thus, testing your program multiple times would be a good choice. Testing it with different arguments would be even better. 6 Marking Scheme Your program will be tested on our CSLab Linux servers (cs3103-01, cs3103-02, cs3103-03). You should describe clearly how to compile and run your program as comments in your source program file. If an executable file cannot be generated and running successfully on our Linux servers, it will be considered as unsuccessful. A. Design and use of multi-threading (15%) Thread-safe multithreaded design and correct use of thread-management functions Non-multithreaded implementation (0%) B. Design and use of mutexes (15%) Complete, correct and non-excessive use of mutexes Useless/unnecessary use of mutexes (0%) C. Design and use of semaphores (30%) Complete, correct and non-excessive use of semaphores Useless / unnecessary use of semaphores (0%) D. Degree of concurrency (15%) A design with higher concurrency is preferable to one with lower concurrency. o An example of lower concurrency: only one thread can access the buffer at a time. o An example of higher concurrency: various threads can access the buffer 4 but works on different articles at a time. No concurrency (0%) E. Program correctness (15%) Complete and correct implementation of other features including: o correct logic and coding of thread functions o correct coding of queue and related operations o passing parameters to the program on the command line program output conform to the format of the sample output o successful program termination Fail to pass the g++ complier on our Linux servers to generate a runnable executable file (0%) F. Programming style and documentation (10%) Good programming style Clear comments in the program to describe the design and logic Unreadable program without any comment (0%) O 2 Background Sentiment analysis, which is a powerful technique based on natural language processing, has a wide range of applications, including consumer reviews analysis, recommender system, political campaigning, stock speculation, etc. A sentiment analysis model requires a large text corpus, which consists of classified articles grabbed from the internet using web crawlers. In the simplest scenario, a text corpus can be built by two components: a web crawler and a classifier. The crawler browses through web pages and grabs articles from websites. The grabbed articles are stored in a buffer, from which the classifier processes articles and classifies them. Considering the complexity of modern websites, it usually takes a long time for a crawler to locate and grab an article from the web page. So, the speed of crawlers is usually too slow for the classifier. Thus, multiple crawlers would be a better choice. 3 Components and Requirements You are required to design and implement three crawlers, a buffer and a classifier in C/C++ on Linux (other languages are not allowed). Mutual exclusion and synchronization must be done with mutex and semaphore provided in libraries and 3.1 crawler Each crawler thread is created to grab articles from websites and load them into the buffer. It keeps doing grabbing and loading job, which takes time interval_A, until the buffer is full. And then it starts waiting until the classifier deletes an article from the buffer. A function char* str_generator (void), is provided to generate articles for the crawler to grab and each article is represented by a string of 50 characters. 3.2 buffer The buffer structure is a first-in-first-out (FIFO) queue. It is used to store the grabbed articles from crawlers temporarily, until they are taken by the classifier. It can store up to 12 articles at the same time. You need to implement your own queue. You are not allowed to use standard c++ library (e.g., queue or other container provided by standard template library) or third-party libraries. 1 3.3 classifier A classifier thread is created to classify the articles grabbed by the crawlers in FIFO order. Specifically, there are two steps in the procedure: 1. Pre-processing: the classifier makes a copy of the article at the head of the buffer, changes all the uppercase letter ('A'-'Z') to lowercase letter ('a'-'Z') and deletes any symbol that is not a letter. 2. Classification: the classifier classifies the article into one of the 13 classes based on the first letter, x, of the processed article as follows. Class label = int(x -'a') %13 + 1 Next, an auto-increasing key starting from 1 will be given to the classified article. (So, the keys of classified articles are 1, 2, 3, ...). At last, the key, the class label and the original article, are stored to the text corpus in a text file. Then, the classifier deletes the classified article in the buffer. The whole procedure takes time of interval_B. 3.4 termination The articles are divided into 13 classes. Denote the number of articles in each class as C1, C2, ... C13, and p = min{ C1, C2, ... C13}. When p 25, the classifier notifies all crawlers to quit after finishing the current job at hand, and then the program terminates. 3.5 input arguments Your program has to accept the following two arguments in input order: interval_A, interval_B: integer, unit: microsecond. . 3.6 sample outputs The outputs of your program are: A table with multiple columns shown on the screen, each column shows the activities of a single thread in time order, and each row shows only one single activity of a thread. The text corpus, each line consists of a key, a class label and an article separated by a space. All activities that need to be recorded for each thread are listed below, together with their abbreviations. Crawler: start - crawler starts. grab - crawler starts to grab an article. f-grab - an article has been grabbed and loaded into the buffer. wait - crawler starts waiting for available space in the buffer. s-wait - crawler stops waiting. quit - crawler finished all job and about to quit. Classifier: start - classifier starts. clfy - classifier starts to classify an article. f-clfy - the article has been classified and deleted from the buffer. k-enough - k number of articles have been classified and the classifier notifies all threads to quit. n-stored a total n articles have been stored in the text corpus. quit - classifier finished all job and about to quit. Below are sample output of the table on the screen and the text corpus. For example, in the table, crawler1 started at t1, then, crawler2 started at t2 and grabbed at t3, and so on. crawler3 classifier crawleri start crawler2 f-grab wait f-clfy start grab clfy start grab Swait grab start grab f-grab wait f-grab f-grab f-clfy 95-enough clfy grab clfy Soweit quit f-grab grab sawait quit grab f-clfy clfy f-grab quit f-grab f-grab grab f-clfy clfy f-grab grab f-cify cify f-grab grab f-clfy clfy f-clfy clfy f-clfy clfy f-clfy cify f-clfy clfy f-clfy clfy fucify clfy f-clfy clfy f-clfy clfy f-clfy clfy f-clfy 106-store quit f-grab grab f-grab f-clfy clfy f-clfy clfy f-grab grab Beginning of the table End of the table 1 13 ZUPPAV; nHVY@a\kHko; awahkjtc4g6yT?6\=aR_gL5kt:f1xYN 2 11 xZLEDyvUNZjn;wTuJxrg'U3r4ss:dpYXN 73SSBWJ17BSCd=gE 3 1 *=4@NBE=1VL:qN]sz=QY5qk_n; 6RSOZLn] i4@OBO;K6jKD3pE 4 12 >;18>yL'bu>Yujg151pYPX@B][=nc13EYOR OF GOTEVO 5 8 Hf6u45Q@D10wSb:Xdc;YLO 57j[Jeoqm@NACUUSQM5EeY0000; 08jbnN?pzrX 11 1 NYfahrz]OVDQ;5z'zZa\Q39Ci>QGn4a5k5MJwrzovhVa[g?X81 12 4 QArg;D9@InRyYxK:OVUO=5n6=rrwAfBWJr)__]r>:11Z]w7y5ph5 15 6 59\AndDBiBEq3TEUVM9* *2HOKC<_bcncvisojlhgc ncoke>gkzu; 3WHD1?SU063x0;v 9NH[PUZHjuo_j 17 3 CV1]KTKMsot8@[J[M>4?v2r9JZINR=d402ZsGb23zxh wut)? 18 2 OxonamoG6_XOVZG?VVBUAOUEw_Jf1L?rhx?mDy3ztg^1W>[fox4IX 20 3 coxkAkx@GGD JO1ks;U[G_B4LERHr4[y^^mc>shA9=[bFZ>IJ9 21 13 mKFS=TFdYxZSWOYAB7xDdp: UU>NTa**9sVU5vD7vHs ]PM9Udhs text corpus 5 Helper Program and Hint 5.1 generator.cpp The function char* str_generator (void) is provided in the file generator.cpp. It returns a string (char array) of length 50. Use it by declaring a prototype in your code and compiling it along with your source code. 5.2 hint Multi-threading needs careful manipulation. A specious program may show correctness in several tests at the beginning, but collapses at the later tests. Thus, testing your program multiple times would be a good choice. Testing it with different arguments would be even better. 6 Marking Scheme Your program will be tested on our CSLab Linux servers (cs3103-01, cs3103-02, cs3103-03). You should describe clearly how to compile and run your program as comments in your source program file. If an executable file cannot be generated and running successfully on our Linux servers, it will be considered as unsuccessful. A. Design and use of multi-threading (15%) Thread-safe multithreaded design and correct use of thread-management functions Non-multithreaded implementation (0%) B. Design and use of mutexes (15%) Complete, correct and non-excessive use of mutexes Useless/unnecessary use of mutexes (0%) C. Design and use of semaphores (30%) Complete, correct and non-excessive use of semaphores Useless / unnecessary use of semaphores (0%) D. Degree of concurrency (15%) A design with higher concurrency is preferable to one with lower concurrency. o An example of lower concurrency: only one thread can access the buffer at a time. o An example of higher concurrency: various threads can access the buffer 4 but works on different articles at a time. No concurrency (0%) E. Program correctness (15%) Complete and correct implementation of other features including: o correct logic and coding of thread functions o correct coding of queue and related operations o passing parameters to the program on the command line program output conform to the format of the sample output o successful program termination Fail to pass the g++ complier on our Linux servers to generate a runnable executable file (0%) F. Programming style and documentation (10%) Good programming style Clear comments in the program to describe the design and logic Unreadable program without any comment (0%) O
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started