X

Category

Overview

Best AI Tools User reviews User Reviews, AI PRODUCTIVITY TOOL. Typical AI tools include AI Writing,AI Translator,AI Research & Analysis,AI Programming,AI Office Copilot.

Most Reviewed

Top Rated

PRODUCTIVITY TOOL

Reviews

Tags


  • AILearner98 2024-11-06 12:11
    Interesting:4,Helpfulness:4,Price:3,Correctness:4

    The price for Github Copilot plans are $10 per month for individual and $19 per month for business plans. The differences include the fine-tuned models and some enterprise workspace support. Compare to other free tools, such as cursor/Claude, this plan for individual is not competitive enough. But maybe the code completion quality is competitive enough ?


  • DerekZZ 2024-11-05 12:16
    Interesting:4,Helpfulness:4,Website Frontend:3,Correctness:4
    Prompt: how to implement a sandbox environment for python with docker and container

    I asked ChatGPT (GPT4o) question about python coding "sandbox python programs with Docker environment". The responses are helpful and the generated code samples are clear. But the website front end is having a URL rendering issue of the "Docker installation guide". The font is highlighted so it means it's a link. But there is no href or URL associated with the text and I can't find the installation guide it refers to. Is it a known problem? Reproducing links: https://chatgpt.com/share/67298cb0-47c0-8005-96ea-0562df9f7158


  • jennifer98 2024-10-31 18:00
    Interesting:3,Unusual Expressions:2,Helpfulness:3,Correctness:3

    I am writing an essay on the upcoming 2024 US presidential elections. And I copy and paste a news report from BBC (https://www.bbc.com/news/articles/cx28mpzlz47o) into Grammarly to see how it's going to do the grammarly check and correct the published articles. Grammarly gives two suggestions: 1. Change "vice-president" to "vice president". 2. Correct "seized on the furore" to "seized on the furor", changing the word "furore" to "furor". Since I am not familiar with the phrase "seized on the furor", I asked Chatgpt what does it mean and got the answers that "The phrase "seized on the furore" means that someone, often a public figure or media outlet, took advantage of or capitalized on a situation of intense public interest or controversy (the furore). In a news context, it typically suggests that they are using the excitement or outrage surrounding an issue to draw attention to their perspective or agenda." So the original news report text are correct and the rare phrases "seized on the furor" should not be corrected.


  • codemonkey 2024-10-31 17:12
    Interesting:4,Helpfulness:4,Correctness:4
    Prompt: Implement the function of transformer model, users typed some lines such as "def transformer(x):"

    Another more complicated task I tested on Cursor Code Editor is to write a python code to implement the Transformer function as in paper "Attention is all you need". The code I am writing include function name "def transformer(x):" and some of the beginning lines like "q=torch.linear(". And with the suggested code, I wrap up the transformer function in less than one minutes. So it can really help me increase the productivity of writing code. The only drawback is when I want to modify the code and use backspace to delete some lines, it seems like Cursor doesn't know what to do and give no hints for a while. Unless I start writing something else. And the newly suggested code will usually be quite different from the previously suggested ones. ``` ## Machine Learning ### Input import torch def transformer(x): ndim = 16 q=torch.linear(ndim, ndim)(x) k=torch.linear(ndim, ndim)(x) v=torch.linear(ndim, ndim)(x) attn = torch.matmul(q, k.transpose(-2, -1)) attn = attn / math.sqrt(ndim) attn = torch.softmax(attn, dim=-1) ### Cursor Suggested Code: out = torch.matmul(attn, v) out = torch.linear(ndim, ndim)(out) return out ```


  • codemonkey 2024-10-31 17:05
    Interesting:5,Helpfulness:5,Succinct:5,Correctness:5
    Prompt: write a python coding function of calculating fabonacci series

    I just downloaded Cursor on Mac and tried some coding task. The first task is to write a fabonacci function in python. And once I typed the name "fabonacci(n)" and end the function name with the colon ":", there is a code hint tab poping-up suggesting the remaining code. The suggested codes are correct and are very succinct. Very Helpful AI coding tools. ``` def fabonacci(n): if n == 0: return 0 elif n == 1: return 1 else: return fabonacci(n-1) + fabonacci(n-2) ```

Write Your Review

Detailed Ratings

Upload Pictures and Videos