❓FAQ
Frequently Ask Question about Serverless GPU
Last updated
Frequently Ask Question about Serverless GPU
Last updated
In the beta version, users are limited to one active project at a time. If you need to create a new project, you must first delete your current project using the command:
float16 project delete
Once a project is deleted, it cannot be restored
All deployed endpoints will be automatically deleted when the project is removed
You can locate your project ID through several methods:
Using CLI:
Run float16 project list
Your current project ID will appear at the top of the table with "active" status
Checking float16.conf:
Look for the 'project_id' parameter in your float16.conf file
This error occurs when the system cannot locate your project ID. Check the following:
Verify that you have a float16.conf file in your current directory
If missing, run float16 init
to create it
Confirm that you have created a project
If not, use float16 project create
to create one
The project ID will automatically update in your float16.conf file
If you created the project in another path or folder
Locate the float16.conf
file in the directory where you last used the project
Manually copy the project ID from that configuration file
Apply the copied project ID to your current working directory's configuration
If you're still experiencing issues, contact our support team
This error typically occurs when:
The file is actually missing
You're trying to access files in subfolders
You must be in the same directory as your target file when using run or deploy commands.
The CLI automatically uploads certain files:
All .py files in your directory during run or deploy operations
Your requirements.txt file (if not empty) when you use float16 project start
float16 project start
?Imagine your project is like a car parked in a garage. The float16 project start
command is essentially turning the key and warming up the engine. It's your go-to command when you want to breathe life into your project's environment.
Think of it as a wake-up call for your development container. After creating a new project or if you've been away for more than 24 hours, this command springs your environment back to action. It does two critical things: creates or reactivates your container and automatically installs all the libraries specified in your requirements.txt
.
New project? Run float16 project start
Haven't coded in over a day? Use the command
PS. In deployment mode, you won't need this—the float16 deploy
command handles container activation automatically.