isa-model 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. isa_model/__init__.py +5 -0
  2. isa_model/core/model_manager.py +143 -0
  3. isa_model/core/model_registry.py +115 -0
  4. isa_model/core/model_router.py +226 -0
  5. isa_model/core/model_storage.py +133 -0
  6. isa_model/core/model_version.py +0 -0
  7. isa_model/core/resource_manager.py +202 -0
  8. isa_model/core/storage/hf_storage.py +0 -0
  9. isa_model/core/storage/local_storage.py +0 -0
  10. isa_model/core/storage/minio_storage.py +0 -0
  11. isa_model/deployment/mlflow_gateway/__init__.py +8 -0
  12. isa_model/deployment/mlflow_gateway/start_gateway.py +65 -0
  13. isa_model/deployment/unified_multimodal_client.py +341 -0
  14. isa_model/inference/__init__.py +11 -0
  15. isa_model/inference/adapter/triton_adapter.py +453 -0
  16. isa_model/inference/adapter/unified_api.py +248 -0
  17. isa_model/inference/ai_factory.py +354 -0
  18. isa_model/inference/backends/Pytorch/bge_embed_backend.py +188 -0
  19. isa_model/inference/backends/Pytorch/gemma_backend.py +167 -0
  20. isa_model/inference/backends/Pytorch/llama_backend.py +166 -0
  21. isa_model/inference/backends/Pytorch/whisper_backend.py +194 -0
  22. isa_model/inference/backends/__init__.py +53 -0
  23. isa_model/inference/backends/base_backend_client.py +26 -0
  24. isa_model/inference/backends/container_services.py +104 -0
  25. isa_model/inference/backends/local_services.py +72 -0
  26. isa_model/inference/backends/openai_client.py +130 -0
  27. isa_model/inference/backends/replicate_client.py +197 -0
  28. isa_model/inference/backends/third_party_services.py +239 -0
  29. isa_model/inference/backends/triton_client.py +97 -0
  30. isa_model/inference/base.py +46 -0
  31. isa_model/inference/client_sdk/__init__.py +0 -0
  32. isa_model/inference/client_sdk/client.py +134 -0
  33. isa_model/inference/client_sdk/client_data_std.py +34 -0
  34. isa_model/inference/client_sdk/client_sdk_schema.py +16 -0
  35. isa_model/inference/client_sdk/exceptions.py +0 -0
  36. isa_model/inference/engine/triton/model_repository/bge/1/model.py +174 -0
  37. isa_model/inference/engine/triton/model_repository/gemma/1/model.py +250 -0
  38. isa_model/inference/engine/triton/model_repository/llama/1/model.py +76 -0
  39. isa_model/inference/engine/triton/model_repository/whisper/1/model.py +195 -0
  40. isa_model/inference/providers/__init__.py +19 -0
  41. isa_model/inference/providers/base_provider.py +30 -0
  42. isa_model/inference/providers/model_cache_manager.py +341 -0
  43. isa_model/inference/providers/ollama_provider.py +73 -0
  44. isa_model/inference/providers/openai_provider.py +87 -0
  45. isa_model/inference/providers/replicate_provider.py +94 -0
  46. isa_model/inference/providers/triton_provider.py +439 -0
  47. isa_model/inference/providers/vllm_provider.py +0 -0
  48. isa_model/inference/providers/yyds_provider.py +83 -0
  49. isa_model/inference/services/__init__.py +14 -0
  50. isa_model/inference/services/audio/fish_speech/handler.py +215 -0
  51. isa_model/inference/services/audio/runpod_tts_fish_service.py +212 -0
  52. isa_model/inference/services/audio/triton_speech_service.py +138 -0
  53. isa_model/inference/services/audio/whisper_service.py +186 -0
  54. isa_model/inference/services/audio/yyds_audio_service.py +71 -0
  55. isa_model/inference/services/base_service.py +106 -0
  56. isa_model/inference/services/base_tts_service.py +66 -0
  57. isa_model/inference/services/embedding/bge_service.py +183 -0
  58. isa_model/inference/services/embedding/ollama_embed_service.py +85 -0
  59. isa_model/inference/services/embedding/ollama_rerank_service.py +118 -0
  60. isa_model/inference/services/embedding/onnx_rerank_service.py +73 -0
  61. isa_model/inference/services/llm/__init__.py +16 -0
  62. isa_model/inference/services/llm/gemma_service.py +143 -0
  63. isa_model/inference/services/llm/llama_service.py +143 -0
  64. isa_model/inference/services/llm/ollama_llm_service.py +108 -0
  65. isa_model/inference/services/llm/openai_llm_service.py +129 -0
  66. isa_model/inference/services/llm/replicate_llm_service.py +179 -0
  67. isa_model/inference/services/llm/triton_llm_service.py +230 -0
  68. isa_model/inference/services/others/table_transformer_service.py +61 -0
  69. isa_model/inference/services/vision/__init__.py +12 -0
  70. isa_model/inference/services/vision/helpers/image_utils.py +58 -0
  71. isa_model/inference/services/vision/helpers/text_splitter.py +46 -0
  72. isa_model/inference/services/vision/ollama_vision_service.py +60 -0
  73. isa_model/inference/services/vision/replicate_vision_service.py +241 -0
  74. isa_model/inference/services/vision/triton_vision_service.py +199 -0
  75. isa_model/inference/services/vision/yyds_vision_service.py +80 -0
  76. isa_model/inference/utils/conversion/bge_rerank_convert.py +73 -0
  77. isa_model/inference/utils/conversion/onnx_converter.py +0 -0
  78. isa_model/inference/utils/conversion/torch_converter.py +0 -0
  79. isa_model/scripts/inference_tracker.py +283 -0
  80. isa_model/scripts/mlflow_manager.py +379 -0
  81. isa_model/scripts/model_registry.py +465 -0
  82. isa_model/scripts/start_mlflow.py +95 -0
  83. isa_model/scripts/training_tracker.py +257 -0
  84. isa_model/training/engine/llama_factory/__init__.py +39 -0
  85. isa_model/training/engine/llama_factory/config.py +115 -0
  86. isa_model/training/engine/llama_factory/data_adapter.py +284 -0
  87. isa_model/training/engine/llama_factory/examples/__init__.py +6 -0
  88. isa_model/training/engine/llama_factory/examples/finetune_with_tracking.py +185 -0
  89. isa_model/training/engine/llama_factory/examples/rlhf_with_tracking.py +163 -0
  90. isa_model/training/engine/llama_factory/factory.py +331 -0
  91. isa_model/training/engine/llama_factory/rl.py +254 -0
  92. isa_model/training/engine/llama_factory/trainer.py +171 -0
  93. isa_model/training/image_model/configs/create_config.py +37 -0
  94. isa_model/training/image_model/configs/create_flux_config.py +26 -0
  95. isa_model/training/image_model/configs/create_lora_config.py +21 -0
  96. isa_model/training/image_model/prepare_massed_compute.py +97 -0
  97. isa_model/training/image_model/prepare_upload.py +17 -0
  98. isa_model/training/image_model/raw_data/create_captions.py +16 -0
  99. isa_model/training/image_model/raw_data/create_lora_captions.py +20 -0
  100. isa_model/training/image_model/raw_data/pre_processing.py +200 -0
  101. isa_model/training/image_model/train/train.py +42 -0
  102. isa_model/training/image_model/train/train_flux.py +41 -0
  103. isa_model/training/image_model/train/train_lora.py +57 -0
  104. isa_model/training/image_model/train_main.py +25 -0
  105. isa_model/training/llm_model/annotation/annotation_schema.py +47 -0
  106. isa_model/training/llm_model/annotation/processors/annotation_processor.py +126 -0
  107. isa_model/training/llm_model/annotation/storage/dataset_manager.py +131 -0
  108. isa_model/training/llm_model/annotation/storage/dataset_schema.py +44 -0
  109. isa_model/training/llm_model/annotation/tests/test_annotation_flow.py +109 -0
  110. isa_model/training/llm_model/annotation/tests/test_minio copy.py +113 -0
  111. isa_model/training/llm_model/annotation/tests/test_minio_upload.py +43 -0
  112. isa_model/training/llm_model/annotation/views/annotation_controller.py +158 -0
  113. isa_model-0.1.0.dist-info/METADATA +116 -0
  114. isa_model-0.1.0.dist-info/RECORD +117 -0
  115. isa_model-0.1.0.dist-info/WHEEL +5 -0
  116. isa_model-0.1.0.dist-info/licenses/LICENSE +21 -0
  117. isa_model-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,117 @@
1
+ isa_model/__init__.py,sha256=d63WuNpouABPnomHiQKmPp829-ba-CtKnyefZwgFNsc,87
2
+ isa_model/core/model_manager.py,sha256=eQp0MV0x5sghL1qliPUWkFX4sEKqInyGLoICfNkJnZM,5275
3
+ isa_model/core/model_registry.py,sha256=3K32y9N0M1fXoUH_EBPoFq9Tj1enFgOSx9H57upmsHs,4005
4
+ isa_model/core/model_router.py,sha256=WT45wP5Ta-c3QErPGUY86G9-IpWQXjLC5FG8cPI-qK0,8637
5
+ isa_model/core/model_storage.py,sha256=yMLapW87EY1EPXw6S7H8UQAZh3hJ1KxsEohjgjw-HrA,4507
6
+ isa_model/core/model_version.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ isa_model/core/resource_manager.py,sha256=jlrlhHqtCbq4sAFgfGEEhTWRcuftXtjfV6SjkZs1boM,8545
8
+ isa_model/core/storage/hf_storage.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ isa_model/core/storage/local_storage.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ isa_model/core/storage/minio_storage.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ isa_model/deployment/unified_multimodal_client.py,sha256=GjdQTfFAG4S3dvYvVrH9HraHuDMLPnoeTQKXx0Ybx5M,10858
12
+ isa_model/deployment/mlflow_gateway/__init__.py,sha256=gXV4Vg5lTkqjf9ZQ1Xp-36U15GpoGo5x529stoH3zeI,197
13
+ isa_model/deployment/mlflow_gateway/start_gateway.py,sha256=bfGuHggag3tIO9ItY5H6LSx1fZKDILBUog1JWw6Rlz4,1762
14
+ isa_model/inference/__init__.py,sha256=usfuQJ4zYY2RRtHkE-V6LuJ5aN7WJogtPUj9Qmy4Wvw,318
15
+ isa_model/inference/ai_factory.py,sha256=VLmmgJe26khTSXm_0z1p73vvbsvmVv9T8xvcJmnsEHo,15704
16
+ isa_model/inference/base.py,sha256=qwOddnSGI0GUdD6qIdGBPQpkW7UjU3Y-zaZvu70B4WA,1278
17
+ isa_model/inference/adapter/triton_adapter.py,sha256=nmG1uNVXY28VxCdITDJw_p1FXVuBp9mtOutnHzv0cQ4,15120
18
+ isa_model/inference/adapter/unified_api.py,sha256=67_Ok8W20m6Otf6r9WyOEVpnxondP4UAxOASk9ozDk4,8668
19
+ isa_model/inference/backends/__init__.py,sha256=zNu9tlQlET5Jpr8kRGHV0vVW7XEyISeyNTxfkeEuYk4,1254
20
+ isa_model/inference/backends/base_backend_client.py,sha256=aDlHnStvpxD8whX9E1TZ-8yh2SBfxHD_uzBNj84p1dE,648
21
+ isa_model/inference/backends/container_services.py,sha256=BMa32QuFY19AOlhW4kFsPPrYDxiU5xbAPkf-l5cCCMo,4000
22
+ isa_model/inference/backends/local_services.py,sha256=hReD3NimF5-TfrRl2gibHRs_TNF8TQ70IeDAQU4Xw1Q,2625
23
+ isa_model/inference/backends/openai_client.py,sha256=gwB2VE-NfDtYaSM2ILh4uEp-i0X8SHf-fHPv1skF9WA,4703
24
+ isa_model/inference/backends/replicate_client.py,sha256=kmcTvhyv09TWb-mx8As8GsjIJezI9Hsc4MZMinVqQo0,7062
25
+ isa_model/inference/backends/third_party_services.py,sha256=jyvOoXulmIowcvbk5XzAUjUgUm2dn1ox3F1nPLI4fBQ,9471
26
+ isa_model/inference/backends/triton_client.py,sha256=HuZB_FY4PhI-u6vpZMOzMjALFO9Jds1Vzyw8PMaTuxg,3712
27
+ isa_model/inference/backends/Pytorch/bge_embed_backend.py,sha256=UNZbOYDzPvaxi8_8jRs881v-xpwGK1omB8uDWjL-N_s,5917
28
+ isa_model/inference/backends/Pytorch/gemma_backend.py,sha256=i8W58H4iVfDvEHc6m5VZymNPTgexVGPDZ1rDn5s4ae0,5410
29
+ isa_model/inference/backends/Pytorch/llama_backend.py,sha256=tRpAs9DdoqH1pjzDMg5T60sIYMOjtaSlLJ-Roxcl1aU,5248
30
+ isa_model/inference/backends/Pytorch/whisper_backend.py,sha256=oMJ3Fg6O7zaURDg21IdM3HCdnyJiF-iyxIvNOuFFc8k,6218
31
+ isa_model/inference/client_sdk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
+ isa_model/inference/client_sdk/client.py,sha256=pvKNwnTGcPX-5Q3ACfiftXfghUaIksFfd-zqEi-ze0g,5049
33
+ isa_model/inference/client_sdk/client_data_std.py,sha256=tFBMb2F6pqNeq49fKkRSJW656qpO0BB1rs_wqYJGCS4,1817
34
+ isa_model/inference/client_sdk/client_sdk_schema.py,sha256=Kq5pKrvEzCs2ZYJ44PaMTimHyyCttI-fE1MES-qkGFc,544
35
+ isa_model/inference/client_sdk/exceptions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ isa_model/inference/engine/triton/model_repository/bge/1/model.py,sha256=43MuLQ_nNl64VTRPLmxe7SzkRJl-cZ3A_wnlgQMl_B8,6004
37
+ isa_model/inference/engine/triton/model_repository/gemma/1/model.py,sha256=1aR7UG6W-Dv1PyOTRTmnKIerogricl2DI_4p__hfSt4,9481
38
+ isa_model/inference/engine/triton/model_repository/llama/1/model.py,sha256=4m9_IorEeAPMve-93AECo3pRjK6Swhs38RbCfCn3WKo,3744
39
+ isa_model/inference/engine/triton/model_repository/whisper/1/model.py,sha256=0hugV7MZYj4EwiF1JZzYjFSuj-HK7KVumwtPL2Dg8-w,7943
40
+ isa_model/inference/providers/__init__.py,sha256=a83q-LMFv8u47wf0XtxvqOw_mlVgA_90wtuwy02qdDE,581
41
+ isa_model/inference/providers/base_provider.py,sha256=btkSXE7o1IfOpv22hMM6_DNlm05tbLMszsP1J4T26KE,924
42
+ isa_model/inference/providers/model_cache_manager.py,sha256=dLRpx7OJweQ5LcSAkU7D0DQRfLtIhG6nGvg4W_gau80,15315
43
+ isa_model/inference/providers/ollama_provider.py,sha256=BLkWp4gmCw6Fwf1yNRY90VftMqwca9YOGOHf6DqVEKs,2692
44
+ isa_model/inference/providers/openai_provider.py,sha256=Gwg7JALDs2xTEIWVX0foFue7PlSTjES3I-OLD9cnXOA,3280
45
+ isa_model/inference/providers/replicate_provider.py,sha256=m4FzCd2BTtlPr11gUBDs6L4g4jTNHiPXrp2aoQ5bChs,3414
46
+ isa_model/inference/providers/triton_provider.py,sha256=JRzj15a3HtuaZpLbgPxGfjDubVXzZCecUwfqnjHHa-g,15251
47
+ isa_model/inference/providers/vllm_provider.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
+ isa_model/inference/providers/yyds_provider.py,sha256=h0rAtEvsq4B1x94WAZkUY6hhbnQ1XycW1zV440Zio7w,3028
49
+ isa_model/inference/services/__init__.py,sha256=p-UlEGMnadGUD6zzwfAjf367S2QQ-z1sD6TP-K4EjEM,353
50
+ isa_model/inference/services/base_service.py,sha256=PB6eZp-PynUdo9a0QofvHgrrJLUFYM_FSafTg7fvWrY,3083
51
+ isa_model/inference/services/base_tts_service.py,sha256=UqfcjS9aE5eMURc0bU2nSmUTyn8QxeKEqU5kUwK-W5E,1934
52
+ isa_model/inference/services/audio/runpod_tts_fish_service.py,sha256=CLeV8O68Y_L-ipaSj9aq348HavTpYAFE5yBDfZ_gfA0,7831
53
+ isa_model/inference/services/audio/triton_speech_service.py,sha256=X3P8YsQmuOER7G7-8HaGlvhbuDAmMisV8M7S-ai3cuc,5033
54
+ isa_model/inference/services/audio/whisper_service.py,sha256=fBc1z7YmvZTqn_CPkSDGsJj4emdDnomIBBwOQzHg2EM,6109
55
+ isa_model/inference/services/audio/yyds_audio_service.py,sha256=mitm6o4a6N4wZAWyCl5_1B4-LMzlGDfVT87OP9mso30,2553
56
+ isa_model/inference/services/audio/fish_speech/handler.py,sha256=YuFfxJiu6VvrsYbAzH_hQI1iwTWD6bTgTk8pcKwKWJ4,6673
57
+ isa_model/inference/services/embedding/bge_service.py,sha256=Bx7jScA9RYaQD-9t6QgKeLIY9pmd99JnZCYJgXSrTcQ,6058
58
+ isa_model/inference/services/embedding/ollama_embed_service.py,sha256=zoTHH8Z1IRkDMNciNJghjbV7uzxalIbWc1FYB6-nNoI,3168
59
+ isa_model/inference/services/embedding/ollama_rerank_service.py,sha256=NdlH2fDGbFUdTVtmRLTEcer-f7PcmTDmf0bDkSCTPdI,4276
60
+ isa_model/inference/services/embedding/onnx_rerank_service.py,sha256=GPxezAyZoDpkAdaxuGZ_Fjx3EPpuvSd9b0cQMk_4_8w,2698
61
+ isa_model/inference/services/llm/__init__.py,sha256=hV0WaIb_-fbzzxPgqFihZN5-OcZYVpxYt3bhCJCZl3k,424
62
+ isa_model/inference/services/llm/gemma_service.py,sha256=P8zh-FEYxpiRQJIal3TtZeplxs_GUqMa6C8FvwkQgp8,4396
63
+ isa_model/inference/services/llm/llama_service.py,sha256=XlqVxG_THjNRrQ4cbSeLv3L-Mln5XVqp6gWQF0GtGlo,4396
64
+ isa_model/inference/services/llm/ollama_llm_service.py,sha256=H2_m83taVFQCgIXtiYGfBrCo9YOuKcikzwHmHSf-_HI,4290
65
+ isa_model/inference/services/llm/openai_llm_service.py,sha256=WE9YtjRJepZG756EoluJSr1NLtPTBjV1vqRs3EqufkM,4960
66
+ isa_model/inference/services/llm/replicate_llm_service.py,sha256=ZNAsGrIrTYvj6cguVmqAGtAhW9_FTO8aJj8Xh11kwrQ,6962
67
+ isa_model/inference/services/llm/triton_llm_service.py,sha256=V8XgJ1e9NLenX0SICvoJdGYsqAG7HnK2G_Pqqv5ON68,8102
68
+ isa_model/inference/services/others/table_transformer_service.py,sha256=r74h6QUSwSj6jTt-gRProz9SgwBwKWDe50NR0uqW0ZI,2367
69
+ isa_model/inference/services/vision/__init__.py,sha256=ddHlbtZ_P2LaQHP2LiJc-yOqkXwPVRv6_q3qCjwrkng,274
70
+ isa_model/inference/services/vision/ollama_vision_service.py,sha256=zPe9pRSP82K95WAaikQYDhzCcjKUrxioi3Qsltf9SLI,1997
71
+ isa_model/inference/services/vision/replicate_vision_service.py,sha256=kfjzOIWK7S4FccEzLxFM77EVVkK9V4Rwh1w4EplfL5w,8405
72
+ isa_model/inference/services/vision/triton_vision_service.py,sha256=XUs8bqZ-FN300ECyiw-C-fg1AbvhoespkJhawQkzEzo,7220
73
+ isa_model/inference/services/vision/yyds_vision_service.py,sha256=hiBy_4s1L7k_4p6VX1Hu2GOgdTSheYf7ZgrRoy3Kpmc,2911
74
+ isa_model/inference/services/vision/helpers/image_utils.py,sha256=hTZi4MLktETupPIbE-TXMSi1kix6h8UfLiyEIDt2rzA,1751
75
+ isa_model/inference/services/vision/helpers/text_splitter.py,sha256=6AbvcQ7H6MS54B9d9T1XBGg4GhvmKfZqp00lKp9pF-U,1635
76
+ isa_model/inference/utils/conversion/bge_rerank_convert.py,sha256=1dvtxe5-PPCe2Au6SO8F2XaD-xdIoeA4zDTcid2L9FU,2691
77
+ isa_model/inference/utils/conversion/onnx_converter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
+ isa_model/inference/utils/conversion/torch_converter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
+ isa_model/scripts/inference_tracker.py,sha256=T6qQJMHJcAIQ8eYlgqpM9RWxfiV4z5xIolaoglKBBsg,8831
80
+ isa_model/scripts/mlflow_manager.py,sha256=7xMN0_wELr1jcALuTW9WeWirRkPZPlE2LlFfZKflXBY,12142
81
+ isa_model/scripts/model_registry.py,sha256=7rycPkVk8WHUO3LJaHfdyy5Yq8qmd_4WkGk4wKan-2w,14279
82
+ isa_model/scripts/start_mlflow.py,sha256=3AGKBzByjzbZ56I8w0IOfYnp3V6EU2Lv9NtX9maSqL8,2571
83
+ isa_model/scripts/training_tracker.py,sha256=cnXPi8ip2OK76-aWAOgC-dKx90PqZLEnP6UbHso7Fwc,8080
84
+ isa_model/training/engine/llama_factory/__init__.py,sha256=WCqmUHTidASN4owGDOPSnKeLdG1gbK1MXQrRAzjP0z4,969
85
+ isa_model/training/engine/llama_factory/config.py,sha256=3OvjuXs9IyfcY52pB1SpXSOe0VwmKZvsmy8VK9Ig6Ss,3178
86
+ isa_model/training/engine/llama_factory/data_adapter.py,sha256=krqLp6Jy-IFQ6_M8O3FCtU-qqzUFJ65aNHpVq9C4Zyk,8865
87
+ isa_model/training/engine/llama_factory/factory.py,sha256=U92JKd37QXOBKz4bkSs0Ryoi2fgDIkHXbH15ByS1Q3g,10539
88
+ isa_model/training/engine/llama_factory/rl.py,sha256=lFXmrZ4bbmfVlIrJ4080DufRt0Pdp2xc7ay5SW0XeSE,8218
89
+ isa_model/training/engine/llama_factory/trainer.py,sha256=jUx66YflsHdCcXJGRNJkvpBx6nR1Xyx9f7IIMe44eyc,5095
90
+ isa_model/training/engine/llama_factory/examples/__init__.py,sha256=hXCXa9vQK3Xp26xcaMECN-gMKPtVgK6-IaL3wsXULtM,220
91
+ isa_model/training/engine/llama_factory/examples/finetune_with_tracking.py,sha256=NMYqQUJA8hS3q2Jh2Mr2_5jvb-wYeiPVgiEk7UKkljg,4995
92
+ isa_model/training/engine/llama_factory/examples/rlhf_with_tracking.py,sha256=dlSauNk5L30nMrq-0yJZkY9Tk1cwgdNRM5Flx8ZRZOI,4350
93
+ isa_model/training/image_model/prepare_massed_compute.py,sha256=u0_Xc-0UcjEXL8bOaFDpdJHhUlO4kKLiZ8dkSZil5EE,2981
94
+ isa_model/training/image_model/prepare_upload.py,sha256=4qXJH16ME2rbQNRChG7lQDYTcOflsoAKSsrfXaAb_oQ,508
95
+ isa_model/training/image_model/train_main.py,sha256=0WkEZTU68kSn9351MyYSI4EarqFhj5bFBfykqAUVw30,804
96
+ isa_model/training/image_model/configs/create_config.py,sha256=6kn4m202xNYcwuB8jsyZWrth0-PBv5k07SUtnHz0JCo,951
97
+ isa_model/training/image_model/configs/create_flux_config.py,sha256=zVMvCk6O0fJpojp2HxADNyLUYKlEWVQ7fmscMH7X_oU,1006
98
+ isa_model/training/image_model/configs/create_lora_config.py,sha256=aQ-ze3vf30H5Dsvm-dENt_Gg3ELYq035Rl2ktFPCi8I,729
99
+ isa_model/training/image_model/raw_data/create_captions.py,sha256=7CoHaDoZZZXzZIMF9yLi7iYNEaPkP4tsembUJi2f8Fo,488
100
+ isa_model/training/image_model/raw_data/create_lora_captions.py,sha256=UR417mpWV1Tf57px36yAX7B5E-MnwZfnP9FUbB3Z89k,687
101
+ isa_model/training/image_model/raw_data/pre_processing.py,sha256=KvUDNrw7sozrqnF15lH4mAnKsmHsO883glu0EQBq_6I,8137
102
+ isa_model/training/image_model/train/train.py,sha256=gNMmh_8RtQ3ihz4hJdRcEuwbC5D1SVsgNJjfUHcXmSs,1440
103
+ isa_model/training/image_model/train/train_flux.py,sha256=J5LMUeUKcrFa-8Fer_c7QQiwty0YhFO5w1v0KXv_Oes,1612
104
+ isa_model/training/image_model/train/train_lora.py,sha256=8bSiEMMAwvFDZ-VIhx11jbnO5HpFvaDkM7BC7AuA6DU,2232
105
+ isa_model/training/llm_model/annotation/annotation_schema.py,sha256=BDEgUlRxMoXGTn12VZ_UUU8rWUHQW_JL39d1AvWU-04,1271
106
+ isa_model/training/llm_model/annotation/processors/annotation_processor.py,sha256=hz5VhaPLLPuwq2IoBMbxrZfOS_xBVCrqWk1GEKW2zd0,4839
107
+ isa_model/training/llm_model/annotation/storage/dataset_manager.py,sha256=nKxhmkw-K5vO7Wd5I0Rp5j9fqwV06h_9i_1lVQiU7uU,4592
108
+ isa_model/training/llm_model/annotation/storage/dataset_schema.py,sha256=JPhrT-pbT0jGd_rmDlhyTesXKv9OYxy85U-RAJFe05o,1086
109
+ isa_model/training/llm_model/annotation/tests/test_annotation_flow.py,sha256=DXYHP8rLKaLII6bo5Rtltqk4sQxr8k8G-wQegfuXHiE,3605
110
+ isa_model/training/llm_model/annotation/tests/test_minio copy.py,sha256=EI-PlH5xttAZF14Z_xn6LjgIJBkvP2qjLcvbX2hc0RM,3946
111
+ isa_model/training/llm_model/annotation/tests/test_minio_upload.py,sha256=fL1eMubwR6L9lYc3zEwlWU9yjJuTsIYi93i0l9QUjm0,1109
112
+ isa_model/training/llm_model/annotation/views/annotation_controller.py,sha256=3VzJ52yI-YIpcaAAXy2qac7sr4hTnFdtn-ZEKTt4IkM,5792
113
+ isa_model-0.1.0.dist-info/licenses/LICENSE,sha256=nNPdMBBVrQz3f7AgKFZuyQgdar9d90Vdw51es-P72Dw,1084
114
+ isa_model-0.1.0.dist-info/METADATA,sha256=qKxBtPmgD-U5QhkbO0LDAbVB0KQb9fxUXH6Hskfkk6g,3004
115
+ isa_model-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
116
+ isa_model-0.1.0.dist-info/top_level.txt,sha256=eHSy_Xb3kNkh2kK11mi1mZh0Wz91AQ5b8k2KFYO-rE8,10
117
+ isa_model-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023-2024 isA_Model Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ isa_model