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 flask import Flask, request, jsonify, send_file | |
| from flask_cors import CORS | |
| import torch | |
| import sys | |
| import os | |
| sys.path.append("notebook") | |
| from inference import Inference | |
| from PIL import Image | |
| import base64 | |
| import io |
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
| // Created by Yasushi Oh on 1/22/24. | |
| // Referenced from ChatGPT | |
| //UI View with the Login button component | |
| import SwiftUI | |
| import AuthenticationServices | |
| struct Login: View { | |
| var body: some View { | |
| VStack { |