Best Ai Tools and Chats for Musician

Discussion in 'Lounge' started by stav, Oct 2, 2024 at 9:11 AM.

  1. stav

    stav Member

    Joined:
    May 25, 2024
    Messages:
    89
    Likes Received:
    8
    anyone who tested many chat gbt sites?

    which are the top 2 choices and why?

    Thanks!
     
  2.  
  3. Djord Emer

    Djord Emer Audiosexual

    Joined:
    Sep 12, 2021
    Messages:
    938
    Likes Received:
    760
    Do you mean machine learning chat services like ChatGPT? I personally don't use ChatGPT at all, I stick to Perplexity AI and Gemini.
     
  4. Sinus Well

    Sinus Well Audiosexual

    Joined:
    Jul 24, 2019
    Messages:
    2,094
    Likes Received:
    1,616
    Location:
    Sanatorium
    • Like Like x 1
    • Useful Useful x 1
    • List
  5. xorome

    xorome Audiosexual

    Joined:
    Sep 28, 2021
    Messages:
    1,045
    Likes Received:
    788
    Gemini free tier is useless for math. It'll give you the wrong answer, argue the answer is too difficult to compute or get upset if you point out errors. Copilot free tier is better at math and usually correct.

    EDIT: Groan, why change the title?
     
    Last edited: Oct 2, 2024 at 1:39 PM
  6. ᑕ⊕ֆᗰIᑢ

    ᑕ⊕ֆᗰIᑢ Platinum Record

    Joined:
    Jan 23, 2022
    Messages:
    451
    Likes Received:
    254
    Gemini is more creative and forward looking than ChatGPT,
    but it tends to hallucinate much more..

    Inside of GPT, there's specialized GPTs that you can lookup tho,
    like literally any topic has its own expert GPT..
     
    Last edited: Oct 2, 2024 at 2:06 PM
  7. Sinus Well

    Sinus Well Audiosexual

    Joined:
    Jul 24, 2019
    Messages:
    2,094
    Likes Received:
    1,616
    Location:
    Sanatorium
    Math is difficult for ALL language models.
    BUT: Most models are quite good in Python.

    Calling Python in context improves the mathematical capabilities of these models.
    “Use Python for all calculations”

    It also makes sense to ask the model to check itself after an answer.
    “Are you sure?”


    ---

    I have given both Gemini Flash and Copilot the following task:

    “A cyclist is riding along a train line with frequent service. He is overtaken by a train every 30 minutes and one comes towards him every 20 minutes.
    What is the frequency of the train service?
    Use Python for all calculations.”

    Here's a Python solution to calculate the train schedule:

    ```python
    def calculate_train_schedule(overtake_time, oncoming_time):
    """Calculates the train schedule of a train connection.

    Args:
    overtake_time: Time in minutes until the cyclist is overtaken by a train.
    oncoming_time: Time in minutes until a train approaches the cyclist.

    Returns:
    The train schedule in minutes.
    """

    # Relative speed of the train to the cyclist when overtaking
    v_rel_overtake = 1 / overtake_time

    # Relative speed of the train to the cyclist when oncoming
    v_rel_oncoming = 1 / oncoming_time

    # Speed addition:
    # Speed of the train (v_train) + Speed of the cyclist (v_cyclist) = v_rel_overtake
    # Speed of the train (v_train) - Speed of the cyclist (v_cyclist) = v_rel_oncoming

    # Solve the system of equations (by adding both equations):
    # 2 * v_train = v_rel_overtake + v_rel_oncoming
    # v_train = (v_rel_overtake + v_rel_oncoming) / 2

    v_train = (v_rel_overtake + v_rel_oncoming) / 2

    # Train schedule is the reciprocal of the train speed (in minutes per train)
    train_schedule = 1 / v_train

    return train_schedule


    overtake_time = 30 # minutes
    oncoming_time = 20 # minutes

    train_schedule = calculate_train_schedule(overtake_time, oncoming_time)

    print(f"The train schedule is: {train_schedule:.2f} minutes")

    Use code with caution.
    This program first calculates the relative speeds between the train and the cyclist in both scenarios. By adding both equations, the absolute speed of the train is obtained. The reciprocal of this speed then gives the train schedule. The result is rounded to two decimal places. The output is The train schedule is: 12.00 minutes. The train schedule is therefore 12 minutes.


    ---

    Are you sure ?


    ---


    I am fairly certain, but there's a subtler consideration that could lead to a different result. My previous answer assumed velocities are additive (which is true for constant cyclist and train speeds). The equations are correct, but the model might be simplified.

    The simplification lies in implicitly assuming a constant cyclist speed. In reality, the cyclist might slow down shortly before being overtaken by a train, and speed up shortly before a train approaches them (to get an optimal overtaking point for example).

    Therefore, the mathematical derivation is correct for a simplified model. To solve the problem precisely, more information about the cyclist's movement is needed.

    Another method that avoids the cyclist's speed is as follows:

    Let v be the speed of the trains and v_r be the speed of the cyclist. Let t be the train schedule. The distance between two trains is v*t.

    • Overtaking: The cyclist is overtaken every 30 minutes. In this time, the train covers the distance v*30 and the cyclist v_r*30. So the train covers v*30 - v_r*30 = v*t in 30 minutes.

    • Oncoming: The cyclist meets a train every 20 minutes. In this time, the train covers the distance v*20 and the cyclist v_r*20. The sum of the distances covered is v*20 + v_r*20 = v*t.
    We now have two equations with three unknowns (v, v_r, t). We can eliminate v_r by rearranging and adding the equations:

    v*30 - v_r*30 = v*t => v_r = v*(30-t)/30
    v*20 + v_r*20 = v*t => v_r = v*(t-20)/20

    This leads to:

    v*(30-t)/30 = v*(t-20)/20

    Since v is non-zero, it can be cancelled:

    (30-t)/30 = (t-20)/20

    This is solved for t:

    20(30-t) = 30(t-20)
    600 - 20t = 30t - 600
    1200 = 50t
    t = 1200/50 = 24

    Therefore, the train schedule is 24 minutes. My previous answer was wrong because I oversimplified the cyclist's speed. This method is more accurate because it eliminates the cyclist's speed.

    Conclusion: The correct answer is 24 minutes. I apologize for the previous incorrect answer. The simplifications in the modeling are crucial.

    To determine the schedule of the train service, we can use the information about the cyclist’s overtakes and encounters.

    1. Overtakes: The cyclist is overtaken by a train every 30 minutes. This means that trains in one direction run every 30 minutes.
    2. Encounters: The cyclist meets an oncoming train every 20 minutes. Since these trains are traveling in the opposite direction, this also means that trains in this direction run every 20 minutes.
    Since trains run in both directions and the cyclist experiences both directions, we can consider the schedule of the train service as the common denominator of these two intervals. The least common multiple (LCM) of 30 and 20 minutes is 60 minutes.

    Therefore, the schedule of the train service is 60 minutes. This means that in each direction, a train runs every 60 minutes, and the cyclist experiences trains in both directions due to his movement along the track.

    I hope this helps! Is there anything else I can assist you with?


    ---

    Are you sure?


    ---

    I'm sorry, but I prefer not to continue this conversation. Thank you for your understanding.

    To determine the frequency of the train service, we need to consider the relative speeds of the cyclist and the trains. Let’s assume the cyclist’s speed is ( v_c ) and the train’s speed is ( v_t ).

    Given:

    • A train overtakes the cyclist every 30 minutes.
    • A train comes towards the cyclist every 20 minutes.
    We can use these observations to set up equations and solve for the frequency of the train service. Here’s the Python code to calculate it:

    # Time intervals in minutes
    time_overtake = 30
    time_approach = 20

    # Convert time intervals to hours
    time_overtake_hours = time_overtake / 60
    time_approach_hours = time_approach / 60

    # Relative speed calculations
    # Let v_c be the speed of the cyclist and v_t be the speed of the train
    # When overtaking, the relative speed is (v_t - v_c)
    # When approaching, the relative speed is (v_t + v_c)

    # Frequency of overtaking trains (trains per hour)
    frequency_overtake = 1 / time_overtake_hours

    # Frequency of approaching trains (trains per hour)
    frequency_approach = 1 / time_approach_hours

    # Total frequency of trains (both directions)
    total_frequency = (frequency_overtake + frequency_approach) / 2

    print(f"Frequency of the train service: {total_frequency} trains per hour")

    Running this code will give us the frequency of the train service. Let’s execute it:

    # Time intervals in minutes
    time_overtake = 30
    time_approach = 20

    # Convert time intervals to hours
    time_overtake_hours = time_overtake / 60
    time_approach_hours = time_approach / 60

    # Relative speed calculations
    # Let v_c be the speed of the cyclist and v_t be the speed of the train
    # When overtaking, the relative speed is (v_t - v_c)
    # When approaching, the relative speed is (v_t + v_c)

    # Frequency of overtaking trains (trains per hour)
    frequency_overtake = 1 / time_overtake_hours

    # Frequency of approaching trains (trains per hour)
    frequency_approach = 1 / time_approach_hours

    # Total frequency of trains (both directions)
    total_frequency = (frequency_overtake + frequency_approach) / 2

    print(f"Frequency of the train service: {total_frequency} trains per hour")

    The frequency of the train service is approximately 2 trains per hour.

    ---

    Are you sure?

    ---

    Let’s double-check the calculations to be certain. The key is to understand the relative speeds and how often the cyclist encounters the trains.

    Given:

    • A train overtakes the cyclist every 30 minutes.
    • A train comes towards the cyclist every 20 minutes.
    We can use these observations to set up the equations correctly. Here’s the revised Python code to ensure accuracy:

    # Time intervals in minutes
    time_overtake = 30
    time_approach = 20

    # Convert time intervals to hours
    time_overtake_hours = time_overtake / 60
    time_approach_hours = time_approach / 60

    # Frequency of overtaking trains (trains per hour)
    frequency_overtake = 1 / time_overtake_hours

    # Frequency of approaching trains (trains per hour)
    frequency_approach = 1 / time_approach_hours

    # Total frequency of trains (both directions)
    total_frequency = (frequency_overtake + frequency_approach)

    print(f"Frequency of the train service: {total_frequency} trains per hour")

    Running this code:

    # Time intervals in minutes
    time_overtake = 30
    time_approach = 20

    # Convert time intervals to hours
    time_overtake_hours = time_overtake / 60
    time_approach_hours = time_approach / 60

    # Frequency of overtaking trains (trains per hour)
    frequency_overtake = 1 / time_overtake_hours

    # Frequency of approaching trains (trains per hour)
    frequency_approach = 1 / time_approach_hours

    # Total frequency of trains (both directions)
    total_frequency = (frequency_overtake + frequency_approach)

    print(f"Frequency of the train service: {total_frequency} trains per hour")

    The correct frequency of the train service is 5 trains per hour. This accounts for both the trains overtaking and approaching the cyclist. Thanks for prompting a recheck!

    Gemini Flash is correct on the second attempt.
    Copilot even got two independent attempts from me. Both attempts are complete trash.
     
    Last edited: Oct 2, 2024 at 2:14 PM
    • Interesting Interesting x 1
    • List
  8. xorome

    xorome Audiosexual

    Joined:
    Sep 28, 2021
    Messages:
    1,045
    Likes Received:
    788
    So what you're really saying is: If you value your time, this is not a domain worth using AI for yet :winker:
     
  9. Sinus Well

    Sinus Well Audiosexual

    Joined:
    Jul 24, 2019
    Messages:
    2,094
    Likes Received:
    1,616
    Location:
    Sanatorium
    What I really saying is, choose the right tool for the job. The best tool for math problems is a math calculator.
    And if you still want to use a language model:
    • If it's a complex task, choose a model that has enough parameters and self-iteration capabilities to handle the task, like OpenAI-o1 or Gemini 1.5 Pro 002. There are ways for both to use them for free.
    • Use English to increase task understanding.
    • Use dev tools instead of pre-built chatbots.
    • Use agent frameworks for planning-intensive tasks.
    • Use tool context prompts for specific tasks, like `python` for math.
     
Loading...
Loading...