Cannot create private autotrain space

Cannot create private autotrain space. I can create the auto train space public, the app interface was created, but I convert it to private or make it private from scratch, the app interface will NOT be created

do you get an error?

From the network tab:
allowed-message-origins

> <!DOCTYPE html>
> <html class="">
> <head>
>     <meta charset="utf-8"/>
>     <meta
>             name="viewport"
>             content="width=device-width, initial-scale=1.0, user-scalable=no"
>     />
>     <meta
>             name="description"
>             content="We’re on a journey to advance and democratize artificial intelligence through open source and open science."
>     />
>     <meta property="fb:app_id" content="1321688464574422"/>
>     <meta name="twitter:card" content="summary_large_image"/>
>     <meta name="twitter:site" content="@huggingface"/>
>     <meta
>             property="og:title"
>             content="Hugging Face – The AI community building the future."
>     />
>     <meta property="og:type" content="website"/>
> 
>     <title>Hugging Face – The AI community building the future.</title>
>     <style>
>         body {
>             margin: 0;
>         }
> 
>         main {
>             background-color: white;
>             min-height: 100vh;
>             padding: 7rem 1rem 8rem 1rem;
>             text-align: center;
>             font-family: Source Sans Pro, ui-sans-serif, system-ui, -apple-system,
>             BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans,
>             sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol,
>             Noto Color Emoji;
>         }
> 
>         img {
>             width: 6rem;
>             height: 6rem;
>             margin: 0 auto 1rem;
>         }
> 
>         h1 {
>             font-size: 3.75rem;
>             line-height: 1;
>             color: rgba(31, 41, 55, 1);
>             font-weight: 700;
>             box-sizing: border-box;
>             margin: 0 auto;
>         }
> 
>         p {
>             color: rgba(107, 114, 128, 1);
>             font-size: 1.125rem;
>             line-height: 1.75rem;
>             max-width: 28rem;
>             box-sizing: border-box;
>             margin: 0 auto;
>         }
> 
>         .dark main {
>             background-color: rgb(11, 15, 25);
>         }
> 
>         .dark h1 {
>             color: rgb(209, 213, 219);
>         }
> 
>         .dark p {
>             color: rgb(156, 163, 175);
>         }
>     </style>
>     <script>
>         // On page load or when changing themes, best to add inline in `head` to avoid FOUC
>         const key = "_tb_global_settings";
>         let theme = window.matchMedia("(prefers-color-scheme: dark)").matches
>             ? "dark"
>             : "light";
>         try {
>             const storageTheme = JSON.parse(window.localStorage.getItem(key)).theme;
>             if (storageTheme) {
>                 theme = storageTheme === "dark" ? "dark" : "light";
>             }
>         } catch (e) {
>         }
>         if (theme === "dark") {
>             document.documentElement.classList.add("dark");
>         } else {
>             document.documentElement.classList.remove("dark");
>         }
>     </script>
> </head>
> 
> <body>
> <main>
>     <img
>             src="https://huggingface.co/front/assets/huggingface_logo.svg"
>             alt=""
>     />
>     <div>
>         <h1>404</h1>
>         <p>Sorry, we can’t find the page you are looking for.</p>
>     </div>
> </main>
> </body>
> </html>
> 

“health”:

> <!DOCTYPE html>
> <html class="">
> <head>
>     <meta charset="utf-8"/>
>     <meta
>             name="viewport"
>             content="width=device-width, initial-scale=1.0, user-scalable=no"
>     />
>     <meta
>             name="description"
>             content="We’re on a journey to advance and democratize artificial intelligence through open source and open science."
>     />
>     <meta property="fb:app_id" content="1321688464574422"/>
>     <meta name="twitter:card" content="summary_large_image"/>
>     <meta name="twitter:site" content="@huggingface"/>
>     <meta
>             property="og:title"
>             content="Hugging Face – The AI community building the future."
>     />
>     <meta property="og:type" content="website"/>
> 
>     <title>Hugging Face – The AI community building the future.</title>
>     <style>
>         body {
>             margin: 0;
>         }
> 
>         main {
>             background-color: white;
>             min-height: 100vh;
>             padding: 7rem 1rem 8rem 1rem;
>             text-align: center;
>             font-family: Source Sans Pro, ui-sans-serif, system-ui, -apple-system,
>             BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans,
>             sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol,
>             Noto Color Emoji;
>         }
> 
>         img {
>             width: 6rem;
>             height: 6rem;
>             margin: 0 auto 1rem;
>         }
> 
>         h1 {
>             font-size: 3.75rem;
>             line-height: 1;
>             color: rgba(31, 41, 55, 1);
>             font-weight: 700;
>             box-sizing: border-box;
>             margin: 0 auto;
>         }
> 
>         p {
>             color: rgba(107, 114, 128, 1);
>             font-size: 1.125rem;
>             line-height: 1.75rem;
>             max-width: 28rem;
>             box-sizing: border-box;
>             margin: 0 auto;
>         }
> 
>         .dark main {
>             background-color: rgb(11, 15, 25);
>         }
> 
>         .dark h1 {
>             color: rgb(209, 213, 219);
>         }
> 
>         .dark p {
>             color: rgb(156, 163, 175);
>         }
>     </style>
>     <script>
>         // On page load or when changing themes, best to add inline in `head` to avoid FOUC
>         const key = "_tb_global_settings";
>         let theme = window.matchMedia("(prefers-color-scheme: dark)").matches
>             ? "dark"
>             : "light";
>         try {
>             const storageTheme = JSON.parse(window.localStorage.getItem(key)).theme;
>             if (storageTheme) {
>                 theme = storageTheme === "dark" ? "dark" : "light";
>             }
>         } catch (e) {
>         }
>         if (theme === "dark") {
>             document.documentElement.classList.add("dark");
>         } else {
>             document.documentElement.classList.remove("dark");
>         }
>     </script>
> </head>
> 
> <body>
> <main>
>     <img
>             src="https://huggingface.co/front/assets/huggingface_logo.svg"
>             alt=""
>     />
>     <div>
>         <h1>404</h1>
>         <p>Sorry, we can’t find the page you are looking for.</p>
>     </div>
> </main>
> </body>
> </html>`Preformatted text`

im unable to decipher that. its best to email support@hf.co as it seems like a website issue rather than autotrain issue :slight_smile:

I am experiencing the same thing.

I found many folders with files are loaded under the domain’s space when the space visibility is set to public. But as the screenshot below shows, when I switch the visibility setting to private, the many folders don’t load. The only folder that loads under the domain’s space is the Script one; all the others are missing. Also notice the Apps space is blank :

Furthermore, a significant difference in the logs of both scenarios is:

When I create a Space with public visibility, I will see log entries like the ones below after the “” is issued:

...
To create a public link, set `share=True` in `launch()`.
Setting `pad_token_id` to `eos_token_id`:50256 for open-end generation.
Setting `pad_token_id` to `eos_token_id`:50256 for open-end generation.
Setting `pad_token_id` to `eos_token_id`:50256 for open-end generation.
Setting `pad_token_id` to `eos_token_id`:50256 for open-end generation.
Setting `pad_token_id` to `eos_token_id`:50256 for open-end generation.

MEANWHILE, when I create a Space with private visibility, the line below will be the last log entry I see:

...
To create a public link, set `share=True` in `launch()`.

@ viethoangtranduong Did you get any feedback from support@hf.co?

THANX