As corridas acontecem quinzenalmente, às terças-feiras, com largada às 20h30, nas seguintes pistas do jogo base.
| Etapa | Data | Pista | País |
|---|---|---|---|
| 1 | terça, 25/08/2026 | Misano World Circuit | 🇮🇹 |
| import json | |
| import random | |
| from locust import HttpUser, task, between, events | |
| from locust.exception import LocustError | |
| import argparse | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument("--api-url", type=str, default="https://parallelum.com.br/fipe/api/v1/carros/marcas", | |
| help="Full API endpoint URL to test (e.g., for brands)") | |
| parser.add_argument("--request-body", type=str, default="{}", |
| def transform_timestamp_to_features(timestamp): | |
| # Convert timestamp to datetime | |
| dt = pd.to_datetime(timestamp) | |
| # Initialize a dictionary to store features | |
| features = {} | |
| # Date Features | |
| features["year"] = dt.year | |
| features["quarter"] = dt.quarter |
| • Installing prophet (1.1.3): Failed | |
| ChefBuildError | |
| Backend subprocess exited when trying to invoke build_wheel | |
| running bdist_wheel | |
| running build | |
| running build_py | |
| creating build |
| $ conda install -c conda-forge pip | |
| $ conda install -c conda-forge 'lightgbm>=3.3.3' | |
| $ conda install -c conda-forge cmdstan | |
| $ export PROPHET_REPACKAGE_CMDSTAN=False | |
| $ export PRECOMPILED_HEADERS=false |
| apiVersion: v1 | |
| kind: Pod | |
| metadata: | |
| name: test-proxy-deploy | |
| spec: | |
| volumes: | |
| - name: secret-volume | |
| secret: | |
| secretName: cloud_sql_key_secret | |
| containers: |
| [ | |
| { | |
| "Id":"value", | |
| "prediction":"value", | |
| "status-code":200 | |
| } | |
| ] |
| { | |
| "message":"OK", | |
| "method":"POST", | |
| "status-code":200, | |
| "timestamp":"2022-01-01T00:00:00.000000", | |
| "url":"http://0.0.0.0:1201/predict", | |
| "data":{ | |
| "prediction":[ | |
| { | |
| "input_text":"Flash crashes is a scenario where the price of stocks plunges but then quickly recovers.", |
| # Importação da biblioteca do Boto3 e | |
| # criação de sessão para acesso aos recursos | |
| import boto3 | |
| sessao_boto = boto3.Session(region_name='us-east-1') | |
| # Função para pegar a "ROLE" (papel) de execução | |
| # IAM dos recursos no Sage Maker | |
| from sagemaker import get_execution_role | |
| ROLE = get_execution_role() |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import os | |
| import sys | |
| sys.path.append(os.getcwd() + os.sep + os.pardir) | |
| import random | |
| import time |