This website works better with JavaScript
Domů
Procházet
Nápověda
Registrovat se
Přihlásit se
AIForce
/
petals
zrcadlo
https://github.com/bigscience-workshop/petals.git
Sledovat
5
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Wiki
Procházet zdrojové kódy
Move `petals` => `src/petals`
Aleksandr Borzunov
před 2 roky
rodič
ac22efb8b6
revize
bb71bdfa65
66 změnil soubory
, kde provedl
0 přidání
a
0 odebrání
Rozdělené zobrazení
Ukázat statistiku rozdílových dat
0
0
src/petals/__init__.py
0
0
src/petals/bloom/__init__.py
0
0
src/petals/bloom/block.py
0
0
src/petals/bloom/from_pretrained.py
0
0
src/petals/bloom/model.py
0
0
src/petals/bloom/ops.py
0
0
src/petals/client/__init__.py
0
0
src/petals/client/inference_session.py
0
0
src/petals/client/remote_forward_backward.py
0
0
src/petals/client/remote_generation.py
0
0
src/petals/client/remote_model.py
0
0
src/petals/client/remote_sequential.py
0
0
src/petals/client/sequence_manager.py
0
0
src/petals/client/sequential_autograd.py
0
0
src/petals/client/spending_policy.py
0
0
src/petals/constants.py
0
0
src/petals/data_structures.py
0
0
src/petals/dht_utils.py
0
0
src/petals/server/__init__.py
0
0
src/petals/server/backend.py
0
0
src/petals/server/block_selection.py
0
0
src/petals/server/cache.py
0
0
src/petals/server/handler.py
0
0
src/petals/server/runtime.py
0
0
src/petals/server/server.py
0
0
src/petals/server/task_pool.py
0
0
src/petals/server/task_prioritizer.py
0
0
src/petals/server/throughput.py
0
0
src/petals/src/__init__.py
0
0
src/petals/src/bloom/__init__.py
0
0
src/petals/src/bloom/block.py
0
0
src/petals/src/bloom/from_pretrained.py
0
0
src/petals/src/bloom/model.py
0
0
src/petals/src/bloom/ops.py
0
0
src/petals/src/client/__init__.py
0
0
src/petals/src/client/inference_session.py
0
0
src/petals/src/client/remote_forward_backward.py
0
0
src/petals/src/client/remote_generation.py
0
0
src/petals/src/client/remote_model.py
0
0
src/petals/src/client/remote_sequential.py
0
0
src/petals/src/client/sequence_manager.py
0
0
src/petals/src/client/sequential_autograd.py
0
0
src/petals/src/client/spending_policy.py
0
0
src/petals/src/constants.py
0
0
src/petals/src/data_structures.py
0
0
src/petals/src/dht_utils.py
0
0
src/petals/src/server/__init__.py
0
0
src/petals/src/server/backend.py
0
0
src/petals/src/server/block_selection.py
0
0
src/petals/src/server/cache.py
0
0
src/petals/src/server/handler.py
0
0
src/petals/src/server/runtime.py
0
0
src/petals/src/server/server.py
0
0
src/petals/src/server/task_pool.py
0
0
src/petals/src/server/task_prioritizer.py
0
0
src/petals/src/server/throughput.py
0
0
src/petals/src/utils/__init__.py
0
0
src/petals/src/utils/convert_8bit.py
0
0
src/petals/src/utils/generation_algorithms.py
0
0
src/petals/src/utils/generation_constraints.py
0
0
src/petals/src/utils/misc.py
0
0
src/petals/utils/__init__.py
0
0
src/petals/utils/convert_8bit.py
0
0
src/petals/utils/generation_algorithms.py
0
0
src/petals/utils/generation_constraints.py
0
0
src/petals/utils/misc.py
+ 0
- 0
petals/__init__.py → src/petals/__init__.py
Zobrazit soubor
+ 0
- 0
petals/bloom/__init__.py → src/petals/bloom/__init__.py
Zobrazit soubor
+ 0
- 0
petals/bloom/block.py → src/petals/bloom/block.py
Zobrazit soubor
+ 0
- 0
petals/bloom/from_pretrained.py → src/petals/bloom/from_pretrained.py
Zobrazit soubor
+ 0
- 0
petals/bloom/model.py → src/petals/bloom/model.py
Zobrazit soubor
+ 0
- 0
petals/bloom/ops.py → src/petals/bloom/ops.py
Zobrazit soubor
+ 0
- 0
petals/client/__init__.py → src/petals/client/__init__.py
Zobrazit soubor
+ 0
- 0
petals/client/inference_session.py → src/petals/client/inference_session.py
Zobrazit soubor
+ 0
- 0
petals/client/remote_forward_backward.py → src/petals/client/remote_forward_backward.py
Zobrazit soubor
+ 0
- 0
petals/client/remote_generation.py → src/petals/client/remote_generation.py
Zobrazit soubor
+ 0
- 0
petals/client/remote_model.py → src/petals/client/remote_model.py
Zobrazit soubor
+ 0
- 0
petals/client/remote_sequential.py → src/petals/client/remote_sequential.py
Zobrazit soubor
+ 0
- 0
petals/client/sequence_manager.py → src/petals/client/sequence_manager.py
Zobrazit soubor
+ 0
- 0
petals/client/sequential_autograd.py → src/petals/client/sequential_autograd.py
Zobrazit soubor
+ 0
- 0
petals/client/spending_policy.py → src/petals/client/spending_policy.py
Zobrazit soubor
+ 0
- 0
petals/constants.py → src/petals/constants.py
Zobrazit soubor
+ 0
- 0
petals/data_structures.py → src/petals/data_structures.py
Zobrazit soubor
+ 0
- 0
petals/dht_utils.py → src/petals/dht_utils.py
Zobrazit soubor
+ 0
- 0
petals/server/__init__.py → src/petals/server/__init__.py
Zobrazit soubor
+ 0
- 0
petals/server/backend.py → src/petals/server/backend.py
Zobrazit soubor
+ 0
- 0
petals/server/block_selection.py → src/petals/server/block_selection.py
Zobrazit soubor
+ 0
- 0
petals/server/cache.py → src/petals/server/cache.py
Zobrazit soubor
+ 0
- 0
petals/server/handler.py → src/petals/server/handler.py
Zobrazit soubor
+ 0
- 0
petals/server/runtime.py → src/petals/server/runtime.py
Zobrazit soubor
+ 0
- 0
petals/server/server.py → src/petals/server/server.py
Zobrazit soubor
+ 0
- 0
petals/server/task_pool.py → src/petals/server/task_pool.py
Zobrazit soubor
+ 0
- 0
petals/server/task_prioritizer.py → src/petals/server/task_prioritizer.py
Zobrazit soubor
+ 0
- 0
petals/server/throughput.py → src/petals/server/throughput.py
Zobrazit soubor
+ 0
- 0
petals/src/__init__.py → src/petals/src/__init__.py
Zobrazit soubor
+ 0
- 0
petals/src/bloom/__init__.py → src/petals/src/bloom/__init__.py
Zobrazit soubor
+ 0
- 0
petals/src/bloom/block.py → src/petals/src/bloom/block.py
Zobrazit soubor
+ 0
- 0
petals/src/bloom/from_pretrained.py → src/petals/src/bloom/from_pretrained.py
Zobrazit soubor
+ 0
- 0
petals/src/bloom/model.py → src/petals/src/bloom/model.py
Zobrazit soubor
+ 0
- 0
petals/src/bloom/ops.py → src/petals/src/bloom/ops.py
Zobrazit soubor
+ 0
- 0
petals/src/client/__init__.py → src/petals/src/client/__init__.py
Zobrazit soubor
+ 0
- 0
petals/src/client/inference_session.py → src/petals/src/client/inference_session.py
Zobrazit soubor
+ 0
- 0
petals/src/client/remote_forward_backward.py → src/petals/src/client/remote_forward_backward.py
Zobrazit soubor
+ 0
- 0
petals/src/client/remote_generation.py → src/petals/src/client/remote_generation.py
Zobrazit soubor
+ 0
- 0
petals/src/client/remote_model.py → src/petals/src/client/remote_model.py
Zobrazit soubor
+ 0
- 0
petals/src/client/remote_sequential.py → src/petals/src/client/remote_sequential.py
Zobrazit soubor
+ 0
- 0
petals/src/client/sequence_manager.py → src/petals/src/client/sequence_manager.py
Zobrazit soubor
+ 0
- 0
petals/src/client/sequential_autograd.py → src/petals/src/client/sequential_autograd.py
Zobrazit soubor
+ 0
- 0
petals/src/client/spending_policy.py → src/petals/src/client/spending_policy.py
Zobrazit soubor
+ 0
- 0
petals/src/constants.py → src/petals/src/constants.py
Zobrazit soubor
+ 0
- 0
petals/src/data_structures.py → src/petals/src/data_structures.py
Zobrazit soubor
+ 0
- 0
petals/src/dht_utils.py → src/petals/src/dht_utils.py
Zobrazit soubor
+ 0
- 0
petals/src/server/__init__.py → src/petals/src/server/__init__.py
Zobrazit soubor
+ 0
- 0
petals/src/server/backend.py → src/petals/src/server/backend.py
Zobrazit soubor
+ 0
- 0
petals/src/server/block_selection.py → src/petals/src/server/block_selection.py
Zobrazit soubor
+ 0
- 0
petals/src/server/cache.py → src/petals/src/server/cache.py
Zobrazit soubor
+ 0
- 0
petals/src/server/handler.py → src/petals/src/server/handler.py
Zobrazit soubor
+ 0
- 0
petals/src/server/runtime.py → src/petals/src/server/runtime.py
Zobrazit soubor
+ 0
- 0
petals/src/server/server.py → src/petals/src/server/server.py
Zobrazit soubor
+ 0
- 0
petals/src/server/task_pool.py → src/petals/src/server/task_pool.py
Zobrazit soubor
+ 0
- 0
petals/src/server/task_prioritizer.py → src/petals/src/server/task_prioritizer.py
Zobrazit soubor
+ 0
- 0
petals/src/server/throughput.py → src/petals/src/server/throughput.py
Zobrazit soubor
+ 0
- 0
petals/src/utils/__init__.py → src/petals/src/utils/__init__.py
Zobrazit soubor
+ 0
- 0
petals/src/utils/convert_8bit.py → src/petals/src/utils/convert_8bit.py
Zobrazit soubor
+ 0
- 0
petals/src/utils/generation_algorithms.py → src/petals/src/utils/generation_algorithms.py
Zobrazit soubor
+ 0
- 0
petals/src/utils/generation_constraints.py → src/petals/src/utils/generation_constraints.py
Zobrazit soubor
+ 0
- 0
petals/src/utils/misc.py → src/petals/src/utils/misc.py
Zobrazit soubor
+ 0
- 0
petals/utils/__init__.py → src/petals/utils/__init__.py
Zobrazit soubor
+ 0
- 0
petals/utils/convert_8bit.py → src/petals/utils/convert_8bit.py
Zobrazit soubor
+ 0
- 0
petals/utils/generation_algorithms.py → src/petals/utils/generation_algorithms.py
Zobrazit soubor
+ 0
- 0
petals/utils/generation_constraints.py → src/petals/utils/generation_constraints.py
Zobrazit soubor
+ 0
- 0
petals/utils/misc.py → src/petals/utils/misc.py
Zobrazit soubor