Skip to main content

Try Google NotebookLM.

 Due to receiving news of a new feature update, I visited the website to test NotebookLM. Developed by the Google team, this tool allows AI to analyze the content and summary of articles. Currently, the beta version is only available to users in the United States. This tool can obtain content for analysis through inputting text and files. Therefore, logging into a Google account to allow access to Drive data is a convenient method.


Currently, it may still be in the early stages of development, and the interface design is not very user-friendly. Here, I am documenting my operating process so that those interested in trying it out can also give it a try.

  • Step 1: Create Project


Upon entering the project, the first thing you'll see is the Note page. You can directly type and add notes here. However, during my testing, manual input did not have the line break functionality.

  • Step 2: Add source
Switch to the Sources page and add a document. It can read files on Drive, accept PDF files, or have text pasted into the input field. The content I tested was the Christmas edition of Edge magazine, with a preface and the first article discussing the controversy over Unity's charges.

  • Step 3: Summary and prompt

The screen that opens after uploading is a bit difficult to understand. It actually has three layers.

The first layer is the list of article squares from before. The file names on the white background constitute the second layer, and the movement direction is likely from bottom to top. The blue-purple area, which contains the summary, is the third layer, and the action is from top to bottom.


If you click the upward arrow in the upper right corner of the blue box, the blue-purple area will shrink upward, revealing the original text from the first layer. Key topics are items that have been listed for you. The preface is very short and can be summarized into five items.
Step 4: ping notes

Clicking on the suggested sentence will display the content analyzed by AI. This is the fourth-layer screen. The downward arrow next to the options for suggested phrases can close this layer, allowing you to select another line of suggested phrases (perhaps you can select the line with suggested phrases directly?). If you click "pin," that item will stay on the note page. (Currently, our tests are all on the source page.)

If you click on a suggested phrase five times, it will run five times, and there is no way to delete the record in the analysis on the fourth-layer page. When I confirm the screen, switch to a new topic by clicking on it, close and confirm, then open it again with the arrow on the prompt line, it appears at the first line. You have to scroll down to the very end to see the new one.

Here is the screen pinned to notes.

Other thoughts

In this preface, the first three suggestions almost complete the article. The summary is too simplified and lacks almost any content. The last two are a bit of self-expression. The AI deliberately stretches the suggested sentences to five items. The fourth item is gathering questions, and the fifth item is gathering exceptions. After confirming, those listed items don't seem to have much connection...

In the second article about Unity's charges, the four-page study has a more normal summary. All five items are summaries. I'm not sure if any crucial points were skipped. Texts that are too short might be challenging for AI to guess. Jokes or proverbs are based on rich life experiences.

I always feel that the risk of AI summaries lies in the possibility of skipping the key points that readers need. If the document is crucial and every word is important, it's better to read it yourself. AI summaries might be suitable for non-literary or detective genres. Texts in the realm of literary arts and poetry should probably be read personally.

I really hope to read more of the magazines I want to see each month. The number of magazines I want to read exceeds eight every month... so far, I haven't achieved that yet. If I scan through the summaries, at least I can observe the trends in those fields.

Comments

Popular posts from this blog

Bookmark service (MongoDB & Spring REST) -2/2

    I accidentally deleted my development VM. I got lucky having the habit of taking notes. This blog is useful. Development VM is doom to be lost. Rebuild it waste time, but having a clean slate is refreshing~. What concerns me more is my AWS free quota this month is reaching 85%. The second VM I launched but never being used might be the one to blame. (Of course, my mistake.) I terminated the wrong VM. Now I got Linux 2 built. Great, just threw away everything happened on AMI.  1st layer: Page Page class   Originally, I need to prepare getter/setter for all class properties for Spring. By using lombok, I only need to create constructors. lombok will deal with getter/setter and toString(). But there are chances to call getter/setter, but how? .......Naming convention.... Capitalize the 1st character with the prefix get/set.  Annotation @Data was used on this class.  Repository class Spring Docs: Repository https://docs.spring.io/spring-data/mongodb/docs/3....

gamer's interview

This project simulates a gamer's interview. Based on NodeJS+ ReactJS The setting is interviewing a gamer/journalist what's his/her plan of March 2020? The gamer answers his/her game list in plan, how many reviews on demand and how many hours expected. Games selected for review take 5 hours for each, while others take one. This project is designed to practice render html, jsx, component, props introduced in  https://www.w3schools.com/REACT/default.asp . Also fixed other issues to make it work. When trying to modualize objects and tools, my design developed to separate views and processes. And it is quite similar to the initialized structure NodeJS+ReactJS provided. Furthermore, since include local module files are banned by browsers, use NodeJS service seems to be the best option. view file main process object tool

Comments for my Server/Client Web API samples

        Finally, I finished the comments for python/07 and 09 projects. I almost forgot to put the date on source code which is used to note how long it took me. Not precisely in hours….. I didn’t include source code in my previous post. If choosing code-section for this post…… maybe I want to mark out my comment….. (Really?!)          Once my work was developing websites for enterprises, including ERP, CRM or content sites. The sustainability of network and security are important issues. There are 2 methods for HTML Form submission: GET and POST. Submit via POST is secure, compared to GET which piles parameters on URL. RESTful API is mainly using GET.         Yup, even if you have a certification key, if you put the value on the URL, it is visible data. When writing socket-communication, client-server sockets are a pair; both follow the agreement on commands and structures; and there are countless ports for usa...