nebuly-ai / optimate

A collection of libraries to optimise AI model performances
https://www.nebuly.com/
Apache License 2.0
8.37k stars 643 forks source link

[ChatLLaMA] Training process halted #309

Open MuffinC opened 1 year ago

MuffinC commented 1 year ago

image

Hi, it seemed like the training process was fine unitl it hit iteration 71? ran the line: python artifacts/main.py artifacts/config/config.yaml --type ALL

PierpaoloSorbellini commented 1 year ago

Hi @MuffinC, thanks for reaching out, we are sorry for the inconvenience. This problem should have been fixed in the previous release and we haven't encountered it since. Did you use the last available version of the pip or of the source code?

MuffinC commented 1 year ago

image Hi Pier, yes i am using the latest version of pip and i've just pulled from the repo while changing my python version to 10. Still encountering the error

pavelanoshin commented 1 year ago

if WINDOWS

static char convert_win_cmds(const char cmds) { char r = malloc (strlen (cmds) + 1); if (!r) { return NULL; } char p = r; while (cmds) { if (cmds == '!' || (cmds == '\"' && cmds[1] == '!')) { // Adjust shell syntax for Windows, // only for lines starting with ! or "! char c; for (; c = cmds, c; cmds++) { if (c == '\') { // replace \$ by $ c = ++cmds; if (c == '$') { p++ = '$'; } else { p++ = '\'; p++ = c; } } else if (c == '$') { // replace ${VARNAME} by %VARNAME% c = ++cmds; if (c == '{') { p++ = "%"; cmds++; for (; c = cmds, c && c != '}'; ++cmds) { p++ = c; } if (c) { // must check c to prevent overflow p++ = '%'; } } else { p++ = '$'; p++ = c; }