This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from os import environ | |
from psutil import cpu_count | |
from pathlib import Path | |
from typing import Optional | |
from typing import Union | |
import logging | |
from transformers import Pipeline | |
import torch.nn.functional as F | |
import torch | |
from fastapi import FastAPI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from os import environ | |
from psutil import cpu_count | |
from pathlib import Path | |
from typing import Optional | |
from typing import Union | |
import logging | |
from transformers import Pipeline | |
import torch.nn.functional as F | |
import torch | |
from fastapi import FastAPI |