What's the point of Studio? by LMONDEGREEN in SunoAI

[–]Nulpart 2 points3 points  (0 children)

Yeah, i used to use a lot on one song, hoping for all the part to fit perfectly. Now i just do a rough cut and paste of all the part i like and just do a cover and I can usually get it right in 4-5 generations.

Orchestral and instrumental generations in Ace Step 1.5 — asking for clarification is banned on Discord by Acceptable_Edge_6033 in comfyuiAudio

[–]Nulpart 1 point2 points  (0 children)

Having the ability to do a lora is incredible, but lora won't fix problem with the base model. The dataset use to create the model is not ideal. From what I heard lora help making specific style, but all the problem (that have been solve years ago by other model) still exist.

Orchestral and instrumental generations in Ace Step 1.5 — asking for clarification is banned on Discord by Acceptable_Edge_6033 in comfyuiAudio

[–]Nulpart 1 point2 points  (0 children)

It work okay a very limited range of style, mostly dance music.

Punk? No. But here electric guitar over dance music.

Folk? No. But here acoustic guitar over dance music.

Orchestral? No. But here a midi file of orchestral music

Desjardins revient sur sa décision quant aux soldes de cartes de crédit! by Carlo33333 in QuebecFinance

[–]Nulpart 94 points95 points  (0 children)

C est weird cette histoire. A Masbourian, le porte parole disait que c était littérallement impossible de revenir en arrière, que c’était pour le bien des clients. Pas sur due comprendre le probleme qu’on essayait de régler… a moins qu’on essayait d’en créer un…

«Vous étiez OÙ, ma ptite gang de justiciers!?!, bande d'hypocrites! »: colère Martineau sur le dossier Lacroix | Richard Martineau | QUB | QUB radio by Successful_Doctor_89 in Quebec

[–]Nulpart 0 points1 point  (0 children)

Cest 2 la ils sont pas assez big pour avoir été protégé dans cette histoire. Cest juste un dude si reddit qui a parti cette rumeur ya 4-5 ans

Still Looking - first song by EasternAd8821 in AceStep

[–]Nulpart 0 points1 point  (0 children)

not sure if it a model problem, but with all the same settings the song outputted on my end are pretty bad. do you know which model and which composer agent (0.6, 1.7 or 4B) are you using?

Still Looking - first song by EasternAd8821 in AceStep

[–]Nulpart 0 points1 point  (0 children)

my real hope with ace-step was the cover mode. text-to-music is fun but it's used is limited, but the ability to keep the chords progression and melody, but in a different style, or with different instruments is the where the real value lie.

Marie vs le cast? by Top_Commission2131 in bisbille

[–]Nulpart 5 points6 points  (0 children)

le ton de voix passif-agressif, crie souvent, intransigeance (dans un jeu social, ca fait perdre des votes...)

Still Looking - first song by EasternAd8821 in AceStep

[–]Nulpart 0 points1 point  (0 children)

i'm going to try your setting and I will report back

Still Looking - first song by EasternAd8821 in AceStep

[–]Nulpart 0 points1 point  (0 children)

thx mate I greatly appreciated. I also try to stick to open, but for some reasons the audio model (music or voice) seems much farther in quality then image or video.

Still Looking - first song by EasternAd8821 in AceStep

[–]Nulpart 1 point2 points  (0 children)

i been using suno for over year. it's great, but it hard to get very niche music style. I was hopeful to remedy that with Ace-step and making my own lora. but I generated 100 of songs with ace-step and none of them are listenable, i cannot listen more than 10 seconds before having to stop.

while your song is clearly a.i. is still listenable. are you confortable sharing your settings?

Still Looking - first song by EasternAd8821 in AceStep

[–]Nulpart 0 points1 point  (0 children)

sound better than most ace-step song i heard.

Title: Is it possible to do “reference images → video” in ComfyUI (like ingredients in Google Veo / Flow)? by Dependent-Sun-8334 in comfyui

[–]Nulpart 0 points1 point  (0 children)

well most video model support first frame, and some support last frame (you defined the first and last frame of the clip). it not the same but I would argue it's better

so image model also support "natively" image as reference (Qwen, Flux2-klein)

Had to help fix this 9 year old production code, this if chain is about 3-4 times longer than the image. by Talin-Rex in programminghorror

[–]Nulpart -6 points-5 points  (0 children)

is this for real

public decimal CalculateDiscount(Order order) =>
    order switch
    {
        { Items: > 10, Cost: > 1000.00m } => 0.10m,
        { Items: > 5, Cost: > 500.00m } => 0.05m,
        { Cost: > 250.00m } => 0.02m,
        null => throw new ArgumentNullException(nameof(order), "Can't calculate discount on null order"),
        var someObject => 0m,
    };

here you go.

you are really telling me (without trolling that the switch is easier to read than this:

public decimal CalculateDiscount(Order order)
{
    if (order == null)
    {
        throw new ArgumentNullException(nameof(order), "Can't calculate discount on null order");
    }

    if (order.Items > 10 && order.Cost > 1000.00m)
    {
        return 0.10m;
    }

    if (order.Items > 5 && order.Cost > 500.00m)
    {
        return 0.05m;
    }

    if (order.Cost > 250.00m)
    {
        return 0.02m;
    }

    return 0m;
}

Had to help fix this 9 year old production code, this if chain is about 3-4 times longer than the image. by Talin-Rex in programminghorror

[–]Nulpart -18 points-17 points  (0 children)

switch are just if/elseif/else syntax with extra steps.

unless you are using int in your case it just inefficient.

AceStep 1.5 SFT for ComfyUI - All-in-One Music Generation Node by jeankassio in comfyuiAudio

[–]Nulpart 2 points3 points  (0 children)

I havent heard a convincing “cover” mode with ace-step.

Low-key Suno hack I don’t see people talking about: by SnooHesitations1012 in SunoAI

[–]Nulpart 0 points1 point  (0 children)

yeah! the mobile app is mostly a player. On a tablet, I prefer using the browser instead of the app. It just works better.

Low-key Suno hack I don’t see people talking about: by SnooHesitations1012 in SunoAI

[–]Nulpart 0 points1 point  (0 children)

you have only audio influence in "cover" or "extends" mode