From fcbf27c9e4502ddae1ce7892ce27bfe731f3688a Mon Sep 17 00:00:00 2001 From: Pavel Kononykhin <115109593+k3dz0r@users.noreply.github.com> Date: Fri, 20 Dec 2024 12:55:21 -0300 Subject: [PATCH] Hotfix (#231) * Marketplace Updated guides: log-in, upload * Marketplace Small changes --- docs/marketplace/guides/log-in.md | 2 +- docs/marketplace/guides/troubleshooting.md | 2 +- docs/marketplace/guides/upload.md | 25 +++++++++++++++++++--- 3 files changed, 24 insertions(+), 5 deletions(-) diff --git a/docs/marketplace/guides/log-in.md b/docs/marketplace/guides/log-in.md index b9417544..6714aa50 100644 --- a/docs/marketplace/guides/log-in.md +++ b/docs/marketplace/guides/log-in.md @@ -137,7 +137,7 @@ If you connect successfully, you will see your account address in the top-right
-## Step 4. Request TEE and POL +## Step 4. Get testnet tokens Super Protocol users need two types of tokens: diff --git a/docs/marketplace/guides/troubleshooting.md b/docs/marketplace/guides/troubleshooting.md index b7c3aaac..63fd5d68 100644 --- a/docs/marketplace/guides/troubleshooting.md +++ b/docs/marketplace/guides/troubleshooting.md @@ -2,7 +2,7 @@ id: "troubleshooting" title: "Troubleshooting" slug: "/guides/troubleshooting" -sidebar_position: 4 +sidebar_position: 6 --- This page contains the most common issues and ways to fix them. This list is incomprehensive and is constantly updated. diff --git a/docs/marketplace/guides/upload.md b/docs/marketplace/guides/upload.md index 8f22bf0b..e47e9f42 100644 --- a/docs/marketplace/guides/upload.md +++ b/docs/marketplace/guides/upload.md @@ -94,7 +94,7 @@ For some models, you should remove additional formats in the model's root direct ## Step 3. Create a TAR.GZ archive -Archive the directory with the selected model files into a TAR.GZ file using the following instructions: +Ensure your model's directory contains no hidden files and subdirectories. Archive the directory with the selected model files into a TAR.GZ file using the following instructions: @@ -118,9 +118,9 @@ Archive the directory with the selected model files into a TAR.GZ file using the Alternatively, install a file archiver like [7-Zip](https://www.7-zip.org/) or similar to create a TAR.GZ archive using a graphical user interface instead of a command line. - + - On Linux and macOS, open a terminal and run the following command: + On Linux, open a terminal and run the following command: ``` tar -czvf @@ -137,6 +137,25 @@ Archive the directory with the selected model files into a TAR.GZ file using the Wait for the process to complete; it may take a few minutes. + + + On macOS, open the Terminal and run the following command: + + ``` + tar --no-mac-metadata --no-xattrs -czvf + ``` + + Replace `` with the path and desired name of the output archive. Replace `` with the path to the directory with the model files. + + For example: + + ``` + tar --no-mac-metadata --no-xattrs -czvf mymodel.tar.gz ./my-model + ``` + + Wait for the process to complete; it may take a few minutes. + + ## Step 4. Upload the archive